按照文档上说的,有两种地理位置获取办法。一种是用standard方式,一种是Significant-Change,如有要在后台执行,那么按照文档说:
Significant-Change: If you leave this service running and your app is subsequently suspended or terminated, the service automatically wakes up your app when new location data arrives.
If your app needs location updates delivered whether the app is in the foreground or background, there are multiple options for doing so. The preferred option is to use the significant location change service to wake your app at appropriate times to handle new events. However, if your app needs to use the standard location service, you can declare your app as needing background location services.
也就是说我用significant-change的方式可以一直在后台获取地理位置信息,或是标记为needing background location services后用standard方式在后台获取地理位置信息。
但是我测试了很多次,一般是跑10-20分钟就不再获取地理位置信息了。。是否有人做过这一块,求指导,谢谢!
if ([CLLocationManager significantLocationChangeMonitoringAvailable])
{
[[[OTGPSHelper instance] localtionManager] startMonitoringSignificantLocationChanges];
}
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。