Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS8: Blue bar "is Using Your Location" appears shortly after exiting app

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?

like image 481
fishinear Avatar asked Nov 25 '14 17:11

fishinear


1 Answers

We frequently report things to Apple, and sometimes they actually act upon it. Exactly to prevent the blue bar from appearing shortly as described in the question, Apple has introduced a new property on CLLocationManager in iOS-9. Set it at the moment you know you will need the location in the background:

theLocationManager.allowsBackgroundLocationUpdates = YES; 

or, in a backward compatible way:

if ([theLocationManager respondsToSelector:@selector(setAllowsBackgroundLocationUpdates:)]) {     [theLocationManager setAllowsBackgroundLocationUpdates:YES]; } 

in Swift:

if #available(iOS 9.0, *) {     theLocationManager.allowsBackgroundLocationUpdates = true  } 

If this property is not set, then the Blue Bar will not appear when exiting the app, and the user location is not available to your app. Note that in iOS 9, you must set the property in order to be able to use location in the background.

See the WWDC video for Apple's explanation.

like image 75
fishinear Avatar answered Sep 22 '22 14:09

fishinear