iOS 后台获取地理位置并且上传
按照文档上说的,有两种地理位置获取办法。一种是用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分钟就不再获取地理位置信息了。。是否有人做过这一块,求指导,谢谢!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我的代码里用这个跑多久都没问题