I\'m writing an application that requires background location updates with high accuracy and low frequency. The solution seems to be a background NSTimer t
You need to add the location update mode in your application by adding following key in you info.plist.
<key>UIBackgroundModes</key>
<array>
<string>location</string>
</array>
didUpdateToLocation
method will be called (even when your app is in background). You can perform any thing on the bases of this method call
To use standard location services while the application is in the background you need first turn on Background Modes in the Capabilities tab of the Target settings, and select Location updates.
Or, add it directly to the Info.plist.
<key>NSLocationAlwaysUsageDescription</key>
<string>I want to get your location Information in background</string>
<key>UIBackgroundModes</key>
<array><string>location</string> </array>
Then you need to setup the CLLocationManager
Objective C
//The Location Manager must have a strong reference to it.
_locationManager = [[CLLocationManager alloc] init];
_locationManager.delegate = self;
//Request Always authorization (iOS8+)
if ([_locationManager respondsToSelector:@selector(requestAlwaysAuthorization)]) { [_locationManager requestAlwaysAuthorization];
}
//Allow location updates in the background (iOS9+)
if ([_locationManager respondsToSelector:@selector(allowsBackgroundLocationUpdates)]) { _locationManager.allowsBackgroundLocationUpdates = YES;
}
[_locationManager startUpdatingLocation];
Swift
self.locationManager.delegate = self
if #available (iOS 8.0,*) {
self.locationManager.requestAlwaysAuthorization()
}
if #available (iOS 9.0,*) {
self.locationManager.allowsBackgroundLocationUpdates = true
}
self.locationManager.startUpdatingLocation()
Ref:https://medium.com/@javedmultani16/location-service-in-the-background-ios-942c89cd99ba
If you have the UIBackgroundModes
in your plist with location
key then you don't need to use beginBackgroundTaskWithExpirationHandler
method. That's redundant. Also you're using it incorrectly (see here) but that's moot since your plist is set.
With UIBackgroundModes location
in the plist the app will continue to run in the background indefinitely only as long as CLLocationManger
is running. If you call stopUpdatingLocation
while in the background then the app will stop and won't start again.
Maybe you could call beginBackgroundTaskWithExpirationHandler
just before calling stopUpdatingLocation
and then after calling startUpdatingLocation
you could call the endBackgroundTask
to keep it backgrounded while the GPS is stopped, but I've never tried that - it's just an idea.
Another option (which I haven't tried) is to keep the location manager running while in the background but once you get an accurate location change the desiredAccuracy
property to 1000m or higher to allow the GPS chip to get turned off (to save battery). Then 10 minutes later when you need another location update, change the desiredAccuracy
back to 100m to turn on the GPS until you get an accurate location, repeat.
When you call startUpdatingLocation
on the location manager you must give it time to get a position. You should not immediately call stopUpdatingLocation
. We let it run for a maximum of 10 seconds or until we get a non-cached high accuracy location.
You need to filter out cached locations and check the accuracy of the location you get to make sure it meets your minimum required accuracy (see here). The first update you get may be 10 mins or 10 days old. The first accuracy you get may be 3000m.
Consider using the significant location change APIs instead. Once you get the significant change notification, you could start CLLocationManager
for a few seconds to get a high accuracy position. I'm not certain, I've never used the significant location change services.
After iOS 8 their are several changes in CoreLocation framework related background fetch and updations made by apple.
1) Apple introduce the AlwaysAuthorization request for fetching the location update in the application.
2) Apple introduce backgroundLocationupdates for fetching location from background in iOS.
For fetching location in background you need to enable Location Update in Capabilities of Xcode.
//
// ViewController.swift
// DemoStackLocation
//
// Created by iOS Test User on 02/01/18.
// Copyright © 2018 iOS Test User. All rights reserved.
//
import UIKit
import CoreLocation
class ViewController: UIViewController {
var locationManager: CLLocationManager = CLLocationManager()
override func viewDidLoad() {
super.viewDidLoad()
startLocationManager()
}
override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}
internal func startLocationManager(){
locationManager.requestAlwaysAuthorization()
locationManager.desiredAccuracy = kCLLocationAccuracyBest
locationManager.delegate = self
locationManager.allowsBackgroundLocationUpdates = true
locationManager.startUpdatingLocation()
}
}
extension ViewController : CLLocationManagerDelegate {
func locationManager(_ manager: CLLocationManager, didUpdateLocations locations: [CLLocation]){
let location = locations[0] as CLLocation
print(location.coordinate.latitude) // prints user's latitude
print(location.coordinate.longitude) //will print user's longitude
print(location.speed) //will print user's speed
}
}
I did write an app using Location services, app must send location every 10s. And it worked very well.
Just use the "allowDeferredLocationUpdatesUntilTraveled:timeout" method, following Apple's doc.
Steps are as follows:
Required: Register background mode for update Location.
1. Create LocationManger and startUpdatingLocation, with accuracy and filteredDistance as whatever you want:
-(void) initLocationManager
{
// Create the manager object
self.locationManager = [[[CLLocationManager alloc] init] autorelease];
_locationManager.delegate = self;
// This is the most important property to set for the manager. It ultimately determines how the manager will
// attempt to acquire location and thus, the amount of power that will be consumed.
_locationManager.desiredAccuracy = 45;
_locationManager.distanceFilter = 100;
// Once configured, the location manager must be "started".
[_locationManager startUpdatingLocation];
}
2. To keep app run forever using "allowDeferredLocationUpdatesUntilTraveled:timeout" method in background, you must restart updatingLocation with new parameter when app moves to background, like this:
- (void)applicationWillResignActive:(UIApplication *)application {
_isBackgroundMode = YES;
[_locationManager stopUpdatingLocation];
[_locationManager setDesiredAccuracy:kCLLocationAccuracyBest];
[_locationManager setDistanceFilter:kCLDistanceFilterNone];
_locationManager.pausesLocationUpdatesAutomatically = NO;
_locationManager.activityType = CLActivityTypeAutomotiveNavigation;
[_locationManager startUpdatingLocation];
}
3. App gets updatedLocations as normal with "locationManager:didUpdateLocations:" callback:
-(void) locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{
// store data
CLLocation *newLocation = [locations lastObject];
self.userLocation = newLocation;
//tell the centralManager that you want to deferred this updatedLocation
if (_isBackgroundMode && !_deferringUpdates)
{
_deferringUpdates = YES;
[self.locationManager allowDeferredLocationUpdatesUntilTraveled:CLLocationDistanceMax timeout:10];
}
}
4. But you should handle the data in then "locationManager:didFinishDeferredUpdatesWithError:" callback for your purpose
- (void) locationManager:(CLLocationManager *)manager didFinishDeferredUpdatesWithError:(NSError *)error {
_deferringUpdates = NO;
//do something
}
5. NOTE: I think we should reset parameters of LocationManager each time app switches between background/forground mode.
How about giving it a try with startMonitoringSignificantLocationChanges:
API? It definitely fires with less frequency and the accuracy is reasonably good. Additionally it has lot more advantages than using other locationManager
API's.
Lot more regarding this API has already been discussed on this link