如何删除cllocation的缓存?
我正在开发一个 iPhone 应用程序,它是一个位置感知应用程序。 目前,除了先前位置的缓存之外,该应用程序运行良好。 第一次启动应用程序位置管理器会获取当前位置,然后根据当前位置显示附近的事物。
但从下一个开始,它会使用之前获取的位置,直到我重新启动手机为止,它将获取相同的位置。所以到目前为止,我很清楚位置管理器缓存了位置。
所以我的问题是如何删除此缓存并强制位置管理器获取新位置 谢谢
I am developing an iPhone app which is a location aware app .
Currentlly the app is working fine except the caching of previous location .
The first time I start the application location manager fetches the current location and then I display nearby things based on the current location .
But from the next it uses previously fetched location and until I restart the phone it will fetch the same location . So up to this point I am clear that the location manager caches the location .
So my question is how to remove this cache and force the location manager to fetch a new location
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实际上我不认为你可以:这取决于你(在你的 CLLocationManagerDelegate 实例中)根据时间戳过滤你收到的职位(以确保你工作的职位是最近的职位,不是缓存的)。
Actually I don't think you can : it's up to you (in your
CLLocationManagerDelegate
instance) to filter the position you receive based on its timestamp (to ensure that the position you work on is a recent one, not a cached one).