如果应用程序处于后台状态,则获取
UIBackgroundTaskIdentifier
func scheduledLocationManager(_ manager: APScheduledLocationManager, didUpdateLocations locations: [CLLocation]) {
print(locations.last?.description ?? "no location")
if UIApplication.shared.applicationState == .background {
backgroundUpdateTask = UIApplication.shared.beginBackgroundTask { [weak self] in
if let strongSelf = self {
UIApplication.shared.endBackgroundTask(strongSelf.backgroundUpdateTask)
self.backgroundUpdateTask = UIBackgroundTaskInvalid
}
}
}
Alamofire.request("https://testomkar.herokuapp.com/log", method: .post, parameters: ["log":locations.last?.description ?? "no location"]).validate().responseJSON(completionHandler: { (responce) in
if self.backgroundUpdateTask != nil && self.backgroundUpdateTask != UIBackgroundTaskInvalid {
UIApplication.shared.endBackgroundTask(backgroundUpdateTask)
self.backgroundUpdateTask = UIBackgroundTaskInvalid
}
})
}