I\'m getting this warning when I\'m calling a local routine.
My code is this:
-(void)nextLetter {
// NSLog(@\"%s\", __FUNCTION__);
currentLetter
I just got my problem resolved, in my case a CoreLocation Project, using both answers from Tom and Chris -
I declare:
@property (strong, nonatomic)CLLocationManager *locationManager;
And implemented like:
@synthesize locationManager = _locationManager;
....
- (void) dealloc {
[self locationManager];
}