ios – 在后台运行Swift 2.0应用程序,以将位置更新到服务器

前端之家收集整理的这篇文章主要介绍了ios – 在后台运行Swift 2.0应用程序,以将位置更新到服务器前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我写了下面的代码,它有一个每分钟调用回调函数的计时器.当应用程序进入后台时,我启动了另一个调用同一回调方法的计时器,但后台计时器只工作了三分钟.

我明白苹果只允许后台任务只有三分钟.我的应用程序更像是跟踪应用程序,即使应用程序在后台也可以跟踪用户的位置,因此我需要实现此功能.

我了解到,要使用beginBackgroundTaskWithExpirationHandler,但是我不知道我的实现是否正确.

注意:在plist toApp寄存器中有必要的后台模式用于位置更新.

任何工作代码链接都非常感激.

  1. override func viewDidLoad() {
  2. super.viewDidLoad()
  3.  
  4. timeInMinutes = 1 * 60
  5.  
  6. self.locationManager.requestAlwaysAuthorization()
  7.  
  8. self.locationManager.requestWhenInUseAuthorization()
  9.  
  10. if CLLocationManager.locationServicesEnabled() {
  11. locationManager.delegate = self
  12. locationManager.desiredAccuracy = kCLLocationAccuracyNearestTenMeters
  13. locationManager.startUpdatingLocation()
  14. }
  15.  
  16. var timer = NSTimer.scheduledTimerWithTimeInterval( timeInMinutes,target: self,selector: "updateLocation",userInfo: nil,repeats: true)
  17. }
  18.  
  19. func locationManager(manager: CLLocationManager,didUpdateLocations locations: [CLLocation]){
  20. let locValue:CLLocationCoordinate2D = manager.location!.coordinate
  21.  
  22. self.latitude = locValue.latitude
  23. self.longitude = locValue.longitude
  24.  
  25. if UIApplication.sharedApplication().applicationState == .Active {
  26.  
  27. } else {
  28. backgroundTaskIdentifier = UIApplication.sharedApplication().beginBackgroundTaskWithExpirationHandler({ () -> Void in
  29. self.backgroundTimer.invalidate()
  30. self.backgroundTimer = NSTimer.scheduledTimerWithTimeInterval( 60.0,repeats: true)
  31. })
  32. }
  33. }
  34.  
  35. func updateLocation() {
  36. txtlocationLabel.text = String(n)
  37. self.n = self.n+1
  38.  
  39. var timeRemaining = UIApplication.sharedApplication().backgroundTimeRemaining
  40.  
  41. print(timeRemaining)
  42.  
  43. if timeRemaining > 60.0 {
  44. self.GeoLogLocation(self.latitude,Longitude: self.longitude) {
  45. results in
  46. print("View Controller: \(results)")
  47. self.CheckResult(String(results))
  48. }
  49. } else {
  50. if timeRemaining == 0 {
  51. UIApplication.sharedApplication().endBackgroundTask(backgroundTaskIdentifier)
  52. }
  53.  
  54. backgroundTaskIdentifier2 = UIApplication.sharedApplication().beginBackgroundTaskWithExpirationHandler({ () -> Void in
  55. self.backgroundTimer.invalidate()
  56. self.backgroundTimer = NSTimer.scheduledTimerWithTimeInterval( 60.0,repeats: true)
  57. })
  58. }
  59. }

解决方法

定期更新在IOS中有点棘手.有一个很好的线程讨论这个,你可以阅读更多 here

几分钟后,iOS会终止你的应用程序,无论你的计时器是否运行.有一个方法,虽然,我必须做一些类似的事情,当编写一个离子应用程序,所以你可以检查这个here代码,该链接有一个快速的类来管理iO中的定期位置更新.

为了在后台获取周期性的位置,不会耗尽设备的电池,您需要播放位置记录的准确性,降低位置管理器将其所需的精度设置为kCLLocationAccuracyThreeKilometer的准确性,然后每60秒需要将精度更改为kCLLocationAccuracyBest,这将使代理能够获得新的,准确的位置更新,然后将精度恢复到低.每次接收到更新时,需要初始化定时器.

还有一种在用户被杀死后在后台唤醒应用程序的方法,使用应用程序委托让应用程序在杀死之前监听位置的重大更改.当用户的位置发生大跳跃(大约200ms)时,这将在后台唤醒应用程序.当应用程序唤醒时,停止监视重大更改,并照常重新启动位置服务,以继续定期更新.

希望这可以帮助.

更新

在Swift 2中,您还需要:

  1. self.locationManager.allowsBackgroundLocationUpdates = true

猜你在找的iOS相关文章