I\'m currently developing an iPhone application which needs location services for various use including AR.
I test everything on simulator and on my iPhone 3GS and e
This is the solution which fixed this problem for me.
Just stop monitering location changes in
- (void) applicationDidEnterBackground: (UIApplication *)application
{
[locationManager stopMonitoringSignificantLocationChanges];
locationManager.delegate = nil;
}
not in applicationWillEnterForeground:
.Still,it takes a few seconds to disappear locating icon.
I don't know why it isn't working in the latter method.