startMonitoringForRegion 可以唤醒我的应用程序并开始 GPS 跟踪吗?
在苹果的开发者门户中,它指出 startMonitoringForRegion:desiredAccuracy: 最终将唤醒我的应用程序(即使它被杀死)并向核心位置委托发送一条消息。
问题是:收到此消息后是否可以开始 GPS 跟踪(精确跟踪,而不是基于基站的跟踪)(即使我的应用程序在后台)?!
In Apple's developer portal , it states that startMonitoringForRegion:desiredAccuracy: will eventually wake up my app (even if it's killed) and send the Core location delegate a message.
The question is : Is it possible to start GPS tracking (precise tracking, instead of cell-tower based tracking) after receiving this message (even if my app is in the background ) ?!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好吧,我搜索了它,它看起来确实唤醒了应用程序。
我还可以使用
startUpdatingLocation
获得更频繁的(甚至 GPS)更新。Well , I searched for it , and it appears as it does wake up the app.
I can also use
startUpdatingLocation
to get more frequent (and even GPS) updates.