如何删除cllocation的缓存?

发布于 2024-08-19 11:48:12 字数 221 浏览 7 评论 0原文

我正在开发一个 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 技术交流群。

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

发布评论

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

评论(1

够钟 2024-08-26 11:48:12

实际上我不认为你可以:这取决于你(在你的 CLLocationManagerDelegate 实例中)根据时间戳过滤你收到的职位(以确保你工作的职位是最近的职位,不是缓存的)。

-(void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation{ NSDate *eventDate = newLocation.timestamp; NSTimeInterval howRecent = [eventDate timeIntervalSinceNow]; //该事件是否最近且足够准确? if (abs(howRecent) < SECS_OLD_MAX) { //用它来工作! } .... ....

<代码>

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).


-(void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation{
NSDate *eventDate = newLocation.timestamp;
NSTimeInterval howRecent = [eventDate timeIntervalSinceNow];
//Is the event recent and accurate enough ?
if (abs(howRecent) < SECS_OLD_MAX) {
//WORK WITH IT !
}
....
....


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