locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.distanceFilter = kCLDistanceFilterNone; // whenever we move
locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters; // 100 m
[locationManager startUpdatingHeading];
When I am using this code in viewWillAppear i face this warning sometime and so that the delegate method of that no called
- (void)locationManager:(CLLocationManager *)manager didUpdateHeading:(CLHeading *)newHeading