Get Location Updates for iOS App Even when Suspended Get Location Updates for iOS App Even when Suspended ios ios

Get Location Updates for iOS App Even when Suspended


After months of trials and errors by experimenting the Core Location Framework, I have found the solution to get location update even when the app is killed/suspended. It works well for both iOS 7 and 8.

Here is the solution:-

If your app is a location based mobile application that needs to monitor the location of the device when it has significant changes, the iOS will return you some location coordinates when the device has moved more than 500 meters from the last known location. Yes, even when the app is killed/suspended either by the user or iOS itself, you still can get the location updates.

So in order for a locationManager to get location update even when the app is killed/suspended, you must use the method startMonitoringSignificantLocationChanges, you can not use startUpdatingLocation.

When iOS wants to return the location update to the app, it will help you to relaunch the app and return a key UIApplicationLaunchOptionsLocationKey to the app delegate method didFinishLaunchingWithOptions.

The key UIApplicationLaunchOptionsLocationKey is very important and you must know how to handle it. You must create a new locationManager instance when you receive the key and you will get the location update on the locationManager delegate method didUpdateLocations.

Here is the sample code:-

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{    self.shareModel = [LocationShareModel sharedModel];    if ([launchOptions objectForKey:UIApplicationLaunchOptionsLocationKey]) {       self.shareModel.anotherLocationManager = [[CLLocationManager alloc]init];      self.shareModel.anotherLocationManager.delegate = self;      self.shareModel.anotherLocationManager.desiredAccuracy = kCLLocationAccuracyBestForNavigation;      self.shareModel.anotherLocationManager.activityType = CLActivityTypeOtherNavigation;      if(IS_OS_8_OR_LATER) {        [self.shareModel.anotherLocationManager requestAlwaysAuthorization];      }     [self.shareModel.anotherLocationManager startMonitoringSignificantLocationChanges];       }            return YES; }

In addition to the didFinishLaunchingWithOptions method, I have created the locationManager instance when the app is active. Here are some code examples:

- (void)applicationDidEnterBackground:(UIApplication *)application{    [self.shareModel.anotherLocationManager stopMonitoringSignificantLocationChanges];    if(IS_OS_8_OR_LATER) {        [self.shareModel.anotherLocationManager requestAlwaysAuthorization];    }    [self.shareModel.anotherLocationManager startMonitoringSignificantLocationChanges];}- (void)applicationDidBecomeActive:(UIApplication *)application{    if(self.shareModel.anotherLocationManager)        [self.shareModel.anotherLocationManager stopMonitoringSignificantLocationChanges];    self.shareModel.anotherLocationManager = [[CLLocationManager alloc]init];    self.shareModel.anotherLocationManager.delegate = self;    self.shareModel.anotherLocationManager.desiredAccuracy = kCLLocationAccuracyBestForNavigation;    self.shareModel.anotherLocationManager.activityType = CLActivityTypeOtherNavigation;    if(IS_OS_8_OR_LATER) {        [self.shareModel.anotherLocationManager requestAlwaysAuthorization];    }    [self.shareModel.anotherLocationManager startMonitoringSignificantLocationChanges];}

I have written an article explaining on the details on how to get the location update for iOS 7 and 8 even when the app is killed/suspended. I have also uploaded the complete source code on GitHub with the steps on how to test this solution.

Please visit the following URLs for more information:-

  1. Getting Location Updates for iOS 7 and 8 when the App is Killed/Terminated/Suspended
  2. Source Code on GitHub - Get the Location Updates Even when the iOS mobile apps is Suspended/Terminated/Killed


locationManager = [[CLLocationManager alloc] init];#define IS_OS_8_OR_LATER ([[[UIDevice currentDevice] systemVersion] floatValue] >= 8.0)if(IS_OS_8_OR_LATER){    [locationManager requestWhenInUseAuthorization];}locationManager.delegate = self;locationManager.distanceFilter = kCLDistanceFilterNone; //whenever we movelocationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters;[locationManager startUpdatingLocation];

that code user location update only forground app running but not background run

[locationManager requestWhenInUseAuthorization];