我编写了下面的代码,它有一个定时器,每分钟调用一次回调函数。当应用程序进入后台时,我启动了另一个调用相同回调方法的计时器,但后台计时器只能工作三分钟。
我知道Apple只允许后台任务三分钟。我的应用程序更像是一个跟踪应用程序,即使应用程序处于后台,也可以每分钟跟踪用户的位置,因此我需要实现此功能。
我了解到beginBackgroundTaskWithExpirationHandler
将被使用,但我不知道我的实施是否正确。
注意:我在plist toApp寄存器中有必要的后台模式以进行位置更新。
非常感谢任何有效的代码或链接。
override func viewDidLoad() {
super.viewDidLoad()
timeInMinutes = 1 * 60
self.locationManager.requestAlwaysAuthorization()
self.locationManager.requestWhenInUseAuthorization()
if CLLocationManager.locationServicesEnabled() {
locationManager.delegate = self
locationManager.desiredAccuracy = kCLLocationAccuracyNearestTenMeters
locationManager.startUpdatingLocation()
}
var timer = NSTimer.scheduledTimerWithTimeInterval( timeInMinutes, target: self, selector: "updateLocation", userInfo: nil, repeats: true)
}
func locationManager(manager: CLLocationManager, didUpdateLocations locations: [CLLocation]){
let locValue:CLLocationCoordinate2D = manager.location!.coordinate
self.latitude = locValue.latitude
self.longitude = locValue.longitude
if UIApplication.sharedApplication().applicationState == .Active {
} else {
backgroundTaskIdentifier = UIApplication.sharedApplication().beginBackgroundTaskWithExpirationHandler({ () -> Void in
self.backgroundTimer.invalidate()
self.backgroundTimer = NSTimer.scheduledTimerWithTimeInterval( 60.0, target: self, selector: "updateLocation", userInfo: nil, repeats: true)
})
}
}
func updateLocation() {
txtlocationLabel.text = String(n)
self.n = self.n+1
var timeRemaining = UIApplication.sharedApplication().backgroundTimeRemaining
print(timeRemaining)
if timeRemaining > 60.0 {
self.GeoLogLocation(self.latitude,Longitude: self.longitude) {
results in
print("View Controller: \(results)")
self.CheckResult(String(results))
}
} else {
if timeRemaining == 0 {
UIApplication.sharedApplication().endBackgroundTask(backgroundTaskIdentifier)
}
backgroundTaskIdentifier2 = UIApplication.sharedApplication().beginBackgroundTaskWithExpirationHandler({ () -> Void in
self.backgroundTimer.invalidate()
self.backgroundTimer = NSTimer.scheduledTimerWithTimeInterval( 60.0, target: self, selector: "updateLocation", userInfo: nil, repeats: true)
})
}
}
答案 0 :(得分:17)
IOS中的定期位置更新有点棘手。有一个讨论这个的好线程,你可以阅读更多here
iOS将在几分钟后终止您的应用,无论您的计时器是否正在运行。虽然有一种解决方法,但在编写离子应用程序时我必须做类似的事情,以便您可以查看此here的代码,该链接有一个快速类来管理iO中的定期位置更新。
为了获得背景中的周期性位置,而不是耗尽设备的电池,您需要使用位置记录的准确性,降低位置管理器将其所需精度设置为kCLLocationAccuracyThreeKilometers的准确度,然后,每个60秒您需要将准确度更改为kCLLocationAccuracyBest,这将使代表能够获得新的,准确的位置更新,然后将准确性恢复为低。每次收到更新时都需要初始化定时器。
还有一种方法可以在应用程序被用户杀死后在后台唤醒应用程序,使用应用程序委托让应用程序在被杀之前侦听位置的重大变化。当用户的位置发生大跳跃时(这可能是大约200毫秒),这将在后台唤醒应用程序。当应用程序唤醒时,停止监视重大更改并像往常一样重新启动位置服务以继续定期更新。
希望这有帮助。
<强>更新强>
在Swift 2中你还需要:
self.locationManager.allowsBackgroundLocationUpdates = true
答案 1 :(得分:1)
您可以使用库background location tracking,使用示例:
var backgroundLocationManager = BackgroundLocationManager()
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey : Any]? = nil) -> Bool {
backgroundLocationManager.startBackground() { result in
if case let .Success(location) = result {
LocationLogger().writeLocationToFile(location: location)
}
}
return true
}
当应用程序被终止或暂停时,它正在工作。