gpt4 book ai didi

ios - CoreLocation 在空闲后停止获取更新

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:03:43 25 4
gpt4 key购买 nike

我有一个仅使用 iPad 中的 GPS 芯片收集纬度/经度坐标的应用程序(IE 在 ios8 上没有 wifi 或蜂窝网络)。它似乎始终如一地工作,除非该应用程序闲置了大约一个小时(该应用程序仍处于打开状态但 iPad 已锁定。)这是我的代码

我在按下 UIButton 时在 IBAction 中调用 [self.locman startUpdatingLocation]; 获取坐标并将它们存储到文档目录中的文本文件中。

// Delegate method from the CLLocationManagerDelegate protocol.
- (void)locationManager:(CLLocationManager *)manager
didUpdateLocations:(NSArray *)locations {
// If it's a relatively recent event, turn off updates to save power.
CLLocation* location = [locations lastObject];
NSDate* eventDate = location.timestamp;
NSTimeInterval howRecent = [eventDate timeIntervalSinceNow];
if (abs(howRecent) < 1) {
self.lat = [NSString stringWithFormat:@"%.8f",location.coordinate.latitude];
self.longString = [NSString stringWithFormat:@"%.8f",location.coordinate.longitude];
[self.locman stopUpdatingLocation];
}
}

此外,如果在中断一小时后仍未获得更新,则如果用户在一小时内再次按下该按钮,该应用将随后获得更新。所以这似乎是一个预热问题。

澄清一下。这似乎是一个时间问题。出于测试目的,我会收集坐标....开车 5 分钟,然后收集坐标。我可以做很多次,每次停站之间间隔约 5 分钟。无论屏幕变黑还是我按下“ sleep ”按钮,这都可以完美运行。当我将 ipad 单独放置大约一个小时(超过 5 分钟)时,问题就出现了。然后应用程序会给我坐标 0.000000 和 0.0000000。

这是我的位置管理器的实例化。

self.locman = [[CLLocationManager alloc] init];
//self.locman.pausesLocationUpdatesAutomatically = NO;
self.locman.delegate = self;
self.locman.desiredAccuracy = kCLLocationAccuracyBest;
self.locman.distanceFilter = kCLDistanceFilterNone;
self.locman.desiredAccuracy = kCLLocationAccuracyHundredMeters;

最佳答案

您不应该停止更新最近更新的位置,让框架处理频率。检查时间戳以确保您没有旧的位置数据是个好主意——位置管理器通常会立即提供以前缓存的位置数据,然后在可用时提供更多最新的位置数据。

这是哪个 iOS 版本?在 iOS 8 中,您需要调用 requestAlwaysAuthorization 才能在后台接收位置更新。

您能否详细说明您是如何设置位置管理器的?

您的应用可能会在一段时间后被系统终止。如果存在内存泄漏,可能会发生这种情况。

关于ios - CoreLocation 在空闲后停止获取更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26114321/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com