在单独的线程上调用 iPhone CoreLocation 的最佳方法?

发布于 2024-10-30 01:48:15 字数 65 浏览 2 评论 0原文

有没有一种方法可以触发一个线程来调用 CoreLocation 几次,然后每当它获得一定精度的位置时就会更新 UI?

Is there a way to fire off a thread to call CoreLocation a few times, which will then update the UI whenever it gets around to getting a position of a certain accuracy?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

等风也等你 2024-11-06 01:48:15

通常,您不需要单独的线程。在 CLLocationManagerDelegate 中,每次 CL 更新都会调用 -locationManager:didUpdateToLocation:fromLocation: 方法。检查准确性(可能还有时间戳)并相应地更新您的 UI。

Normally, you don't need a separate thread. In you CLLocationManagerDelegate, your -locationManager:didUpdateToLocation:fromLocation: method is called for every CL update. Check the accuracy (and possible the timestamp) and update your UI accordingly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文