iphone – 当应用程序转到后台或手机时,如何获取位置?

我正在尝试使用locationManager来获取我的位置并将其更新到我的webservice.

- (void)locationManager:(CLLocationManager *)manager 
didUpdateToLocation:(CLLocation *)newLocation 
fromLocation:(CLLocation *)oldLocation {
    //some code here
}

这是正常的,但如果我的应用程序进入后台或手机屏幕被锁定,则可能会暂停更新位置.我怎么去这个位置?

最佳答案 阅读完整的博客文章:
iPhone Background GPS: accurate to 500m, not enough for foot traffic

这是一个教程:iOS Multitasking: Background Location

点赞