在我的iOS 7应用中,每次应用启动时我都必须获取当前位置。
我保留了以下代码。
locationManager = [[CLLocationManager alloc] init];
locationManager.delegate = self;
locationManager.desiredAccuracy = kCLLocationAccuracyThreeKilometers;
[locationManager startUpdatingLocation];
我在.h中添加了CLLocationManagerDelegate我在此委托中获取当前位置
方法,但不是所有时间。
-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations
可能是什么问题?为什么有时这个委托方法没有被调用?任何建议将不胜感激。谢谢