gpt4 book ai didi

ios - 位置更新在 iPhone 5 (iOS 7) 中不起作用,但在模拟器中起作用

转载 作者:行者123 更新时间:2023-11-29 10:51:23 24 4
gpt4 key购买 nike

我的 iPhone 后台定位服务有问题。因此,我决定在我的设备上测试前台服务。最好的是,即使它不起作用。

- (IBAction) btnPressed
{
[self startStandardUpdates]
}
- (void)startStandardUpdates
{

if (nil == self.manager) {
[CLLocationManager locationServicesEnabled];
self.manager = [[CLLocationManager alloc] init];
self.manager.delegate = self;
self.manager.desiredAccuracy = kCLLocationAccuracyBest;
self.manager.pausesLocationUpdatesAutomatically = NO;
[self.manager startUpdatingLocation];
}
}

- (void)locationManagerDidPauseLocationUpdates:(CLLocationManager *)manager
{
NSLog(@"Paused");
}

- (void)locationManagerDidResumeLocationUpdates:(CLLocationManager *)manager
{
NSLog(@"Resumed");
}

- (void)locationManager:(CLLocationManager *)manager didFailWithError:(NSError *)error
{
NSLog(@"Error : %@", error);
}

- (void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
{
NSLog(@"Locations : %@",locations);

}

显示三个更新后它停止。并且 - (void)locationManagerDidPauseLocationUpdates:(CLLocationManager *)manager 永远不会被调用,因为“暂停”永远不会注销。

最佳答案

设备是否静止不动?如果是这样,我认为一旦 Core Location 确定设备未移动到指定半径之外,它就会根据您想要的精度停止发射。无需正确。

关于ios - 位置更新在 iPhone 5 (iOS 7) 中不起作用,但在模拟器中起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20303814/

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