CLLocationManager不会一直获取当前位置

时间:2014-03-02 06:14:10

标签: ios7 cllocationmanager

在我的iOS 7应用中,每次应用启动时我都必须获取当前位置。

我保留了

以下代码。

locationManager = [[CLLocationManager alloc] init];

locationManager.delegate = self;

locationManager.desiredAccuracy = kCLLocationAccuracyThreeKilometers;

[locationManager startUpdatingLocation];

我在.h中添加了CLLocationManagerDelegate我在此委托中获取当前位置

方法,但不是所有时间。

-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations

可能是什么问题?为什么有时这个委托方法没有被调用?任何建议将不胜感激。谢谢

0 个答案:

没有答案