gpt4 book ai didi

ios - didUpdateLocations : method not called on device running iOS 7

转载 作者:行者123 更新时间:2023-11-28 17:54:03 25 4
gpt4 key购买 nike

我遇到了一个奇怪的问题。我在用- (void)locationManager:(CLLocationManager *)manager
didUpdateLocations:(NSArray *)locations
获取设备位置。它在 模拟器(iOS 6 和 iOS 7)运行 iOS 6.1.3 的 iPhone 4S 上运行良好。当我将运行 iOS 7 的 iPhone 4 连接到系统并安装该应用程序时,它也工作正常,但是一旦我拔下设备并重新运行该应用程序,就不会调用此方法,我不知道位置。我该如何克服这个问题?

最佳答案

您是如何设置位置管理器的?

你的界面有没有:

@interface ViewController : UIViewController <CLLocationManagerDelegate> {
@property (strong, nonatomic) CLLocationManager *locationManager;
}

然后在viewDidLoad中实现:

// setup location manager
if ([CLLocationManager locationServicesEnabled]) {
_locationManager = [[CLLocationManager alloc] init];

_locationManager.desiredAccuracy = kCLLocationAccuracyBest;
_locationManager.delegate = self;

[_locationManager startUpdatingLocation];
}

你需要实现委托(delegate):

locationManager:didUpdateLocations:

注意:在 IOS 7 中

locationManager:didUpdateToLocation:fromLocation

已弃用。 Apple link to CLLocationManagerDelegate

关于ios - didUpdateLocations : method not called on device running iOS 7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20629906/

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