I would like to get the blue bar when tracking in the background, but not when not.
My app uses location services all the time when active, so in iOS8 I use the requestWhenInUseAuthorization
on CLLocationManager
. Normally, the app stops tracking your location when you close it, but the user can choose the option to let the app track his location in the background as well. Therefore, I have the location
option for UIBackgroundModes
in the Info.plist file. That works perfectly: when switching to the background, the app keeps getting location updates, and a blue bar appears as a reminder that the app is using location services. All perfect.
But the problem is, that the blue bar appears also when the user has not chosen to track in the background. In that case I simply stop location updates from the AppDelegate when entering the background:
- (void) applicationDidEnterBackground:(UIApplication *)application
{
if (!trackingInBackground) {
[theLocationManager stopUpdatingLocation];
}
}
The Blue bar is shown only for a second after closing the app, but it still looks pretty irritating.
I know that using requestAlwaysAuthorization
instead of requestWhenInUseAuthorization
will solve the issue, but then I will not get any blue bar at all, also not when tracking in the background is actually on.
I have tried to stopUpdatingLocation
already in the applicationWillResignActive:
method, but that makes no difference.
Does anybody know how to get the blue bar when tracking in the background, but not when not?