I\'m getting this warning when I\'m calling a local routine.
My code is this:
-(void)nextLetter { // NSLog(@\"%s\", __FUNCTION__); currentLetter
The dot notation (i.e. self.fetchLetter) is meant for properties, not for arbitrary methods. The self.fetchLetter is being interpreted as "get the 'fetchLetter' property of 'self'," which isn't what you intend.
self.fetchLetter
Just use [self fetchLetter] instead.
[self fetchLetter]