Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm looking for a way to get a background location update every n minutes in my iOS application. I'm using iOS 4.3 and the solution should work for non-jailbroken iPhones.

I tried / considered following options:

  • CLLocationManager startUpdatingLocation/startMonitoringSignificantLocationChanges: This works in the background as expected, based on the configured properties, but it seems not possible to force it to update the location every n minutes
  • NSTimer: Does work when the app is running in the foreground but doesn't seem to be designed for background tasks
  • Local notifications: Local notifications can be scheduled every n minutes, but it's not possible to execute some code to get the current location (without the user having to launch the app via the notification). This approach also doesn't seem to be a clean approach as this is not what notifications should be used for.
  • UIApplication:beginBackgroundTaskWithExpirationHandler: As far as I understand, this should be used to finish some work in the background (also limited in time) when an app is moved to the background rather than implementing "long-running" background processes.

How can I implement these regular background location updates?

share|improve this question
possible duplicate of to run app continously in the background – bernie Apr 5 '12 at 17:34
useful follow-up: stackoverflow.com/questions/10235203/… – Lolo Mar 1 at 5:31

4 Answers

up vote 36 down vote accepted

Found a solution to implement this with the help of the Apple Developer Forums. I did the following:

  • Specify location background mode
  • Use an NSTimer in the background by using UIApplication:beginBackgroundTaskWithExpirationHandler:
  • In case n is smaller than UIApplication:backgroundTimeRemaining ,it does works just fine, in case n is larger, the location manager should be enabled (and disabled) again before there is no time remaining to avoid the background task being killed.

This does work since location is one of the three allowed types of background execution.

Note: Did loose some time by testing this in the simulator where it doesn't work, works fine on my phone.

share|improve this answer
11  
do you happen to have the link to the forum. I'm looking to implement the same type of location mapping and haven't been able to get it to work. Or some sample code would be greatly appreciated. – cwieland Sep 8 '11 at 21:31
4  
@all: Yes, our app is available in the AppStore. I am not gonna post all the code, all mentioned bulletpoints are clearly documented features. In case you are having a specific problem, post your own question explaining what you have tried and what goes wrong. – wjans Mar 1 '12 at 18:51
1  
Yes,I tested it & it works as you described. Basically if you started " [locationManager startUpdatingLocation];" in "beginBackgroundTaskWithExpirationHandler" it works forever, it doesn't stop as excepted. I'm just worried that this could be a bug and Apple might fix it in future. – user836026 Mar 1 '12 at 20:43
2  
@user836026: Yes, that's what I mean by specifying background mode. After stopping the location update, it should be started again within 10 minutes to avoid the app from being terminated. – wjans Mar 14 '12 at 20:29
2  
on my test there is not such a difference. I've done a test comparing: my code with this method, mylocus (on appStore) and the "always On" method. – Luka Mar 20 '12 at 10:47
show 29 more comments

I did this in an application I'm developing. The timers don't work when the app is in the background but the app is constantly receiving the location updates. I read somewhere in the documentation (i can't seem to find it now, i'll post an update when i do) that a method can be called only on an active run loop when the app is in the background. The app delegate has an active run loop even in the bg so you dont need to create your own to make this work. [Im not sure if this is the correct explanation but thats how I understood from what i read]

First of all, add the 'location' object for the key 'Background Modes' in your app's info.plist. Now, what you need to do is start the location updates anywhere in your app:

    CLLocationManager locationManager = [[CLLocationManager alloc] init];
    locationManager.delegate = self;//or whatever class you have for managing location
    [locationManager startUpdatingLocation];

Next, write a method to handle the location updates, say -(void)didUpdateToLocation:(CLLocation*)location, in the app delegate. Then implement the method locationManager:didUpdateLocation:fromLocation of CLLocationManagerDelegate in the class in which you started the location manager (since we set the location manager delegate to 'self'). Inside this method you need to check if the time interval after which you have to handle the location updates has elapsed. You can do this by saving the current time every time. If that time has elapsed, call the method UpdateLocation from your app delegate:

NSDate *newLocationTimestamp = newLocation.timestamp;
NSDate *lastLocationUpdateTiemstamp;

int locationUpdateInterval = 300;//5 mins

NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
if (userDefaults) {

        lastLocationUpdateTiemstamp = [userDefaults objectForKey:kLastLocationUpdateTimestamp];

        if (!([newLocationTimestamp timeIntervalSinceDate:lastLocationUpdateTiemstamp] < locationUpdateInterval)) {
            //NSLog(@"New Location: %@", newLocation);
            [(AppDelegate*)[UIApplication sharedApplication].delegate didUpdateToLocation:newLocation];
            [userDefaults setObject:newLocationTimestamp forKey:kLastLocationUpdateTimestamp];
        }
    }
}

This will call your method every 5 mins even when your app is in background. Imp: This implementation drains the battery, if your location data's accuracy is not critical you should use [locationManager startMonitoringSignificantLocationChanges]

Before adding this to your app, please read the Location Awareness Programming Guide

share|improve this answer
That way the location services are constantly enabled (indeed battery draining), I don't want that. I want to enable the location service every n minutes and immediately disable it when I have a good fix (just noticed that I didn't explain that clearly in my question). I can achieve this behaviour in the solution I described. – wjans Jun 24 '11 at 11:43
1  
You can set location manager accuracy to 1km - this will leave your battery almost intact. After 5min you set accuracy to 1m. When you get satisfying location (normally after 5s) just set accuracy back to 1km. – knagode Mar 27 at 0:49

Now that iOS6 is out the best way to have a forever running location services is...

- (void)applicationWillResignActive:(UIApplication *)application
{
/*
 Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state.
 Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game.
 */

NSLog(@"to background");

app.isInBackground = TRUE;

UIApplication *app = [UIApplication sharedApplication];

// Request permission to run in the background. Provide an
// expiration handler in case the task runs long.
NSAssert(bgTask == UIBackgroundTaskInvalid, nil);

bgTask = [app beginBackgroundTaskWithExpirationHandler:^{
    // Synchronize the cleanup call on the main thread in case
    // the task actually finishes at around the same time.
    dispatch_async(dispatch_get_main_queue(), ^{

        if (bgTask != UIBackgroundTaskInvalid)
        {
            [app endBackgroundTask:bgTask];
            bgTask = UIBackgroundTaskInvalid;
        }
    });
}];

// Start the long-running task and return immediately.
dispatch_async(dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0), ^{

    // Do the work associated with the task.

    locationManager.distanceFilter = 100;
    locationManager.desiredAccuracy = kCLLocationAccuracyHundredMeters;
    [locationManager startMonitoringSignificantLocationChanges];
    [locationManager startUpdatingLocation];

    NSLog(@"App staus: applicationDidEnterBackground");
    // Synchronize the cleanup call on the main thread in case
    // the expiration handler is fired at the same time.
    dispatch_async(dispatch_get_main_queue(), ^{
        if (bgTask != UIBackgroundTaskInvalid)
        {
            [app endBackgroundTask:bgTask];
            bgTask = UIBackgroundTaskInvalid;
        }
    });
});

NSLog(@"backgroundTimeRemaining: %.0f", [[UIApplication sharedApplication] backgroundTimeRemaining]);

}

Just tested it like that:

I started the app, go background and move in the car by some minutes. Then I go home for 1 hour and start moving again (without opening again the app). Locations started again. Then stopped for two hours and started again. Everything ok again...

DO NOT FORGET USING the new location services in iOS6

- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{   
    CLLocation *loc = [locations lastObject];

    // Lat/Lon
    float latitudeMe = loc.coordinate.latitude;
    float longitudeMe = loc.coordinate.longitude;
}
share|improve this answer
1  
If the app crashes or is killed, the system doesn't restart, right? – Ken Sep 28 '12 at 15:18
No, if the app crashes it's dead... – Alejandro Luengo Sep 28 '12 at 17:10
1  
For more readable code, you can do a [locations lastObject]; instead of the [locations objectAtIndex:[locations count] - 1] – axello Oct 1 '12 at 15:42
Thanks for that axello. Just fixed the code ;) – Alejandro Luengo Oct 8 '12 at 18:06
your method is only at ios6? – pengwang Nov 23 '12 at 6:36
show 11 more comments

Unfortunately, all of your assumptions seem correct, and I don't think there's a way to do this. In order to save battery life, the iPhone's location services are based on movement. If the phone sits in one spot, it's invisible to location services.

The CLLocationManager will only call locationManager:didUpdateToLocation:fromLocation: when the phone receives a location update, which only happens if one of the three location services (cell tower, gps, wifi) perceives a change.

A few other things that might help inform further solutions:

  • Starting & Stopping the services causes the didUpdateToLocation delegate method to be called, but the newLocation might have an old timestamp.

  • Region Monitoring might help

  • When running in the background, be aware that it may be difficult to get "full" LocationServices support approved by Apple. From what I've seen, they've specifically designed startMonitoringSignificantLocationChanges as a low power alternative for apps that need background location support, and strongly encourage developers to use this unless the app absolutely needs it.

Good Luck!

UPDATE: These thoughts may be out of date by now. Looks as though people are having success with @wjans answer, above.

share|improve this answer
1  
There are apps available in the AppStore (like for instance "My Locus") that do make it possible to get a location update in the background. They don't keep the location service active but it just gets enabled shortly as per the interval defined. How do they do this? – wjans Jun 15 '11 at 6:00
1  
In the situation you describe, the app is most likely using the startMonitoringSignificantLocationChanges approach. Here, the phone gets temporarily 'woken up' when it receives a location update, but there's no interval that you can set to 'ping' this service in the background. When the phone moves (or switches from Cellular to GPS or to Wifi), it triggers an update. The Stanford iTunes U lecture on the topic was really helpful for me - hopefully it can help you find a workaround: itunes.apple.com/us/itunes-u/iphone-application-development/… – Chazbot Jun 15 '11 at 15:31
2  
Thx for the pointer. However, I still don't understand what the app is doing though. Even if my phone is at my desk, not moving at all, I can see the location service being triggered every 10 minutes (exactly). If I understand correctly, startMonitoringSignificantLocationChanges wouldn't give any update in that case. – wjans Jun 17 '11 at 5:15
@wjans how is your phone battery consumption, did you notice it drain quicly maybe due to Mylocus app? – user836026 May 11 '12 at 20:06

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.