0

我正在使用我的 iOS CLLocationManager,但我不确定使用哪种委托方法来获取位置更新。有两种方法

- (void)locationManager:(CLLocationManager *)manager
    didUpdateToLocation:(CLLocation *)newLocation
           fromLocation:(CLLocation *)oldLocation

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

我知道我应该使用第二个,因为第一个已被弃用,但我已将我的应用程序的部署目标设置为 6.0。那么我应该使用哪一个?在附图在此处输入图像描述中,就在这个方法旁边

(void)locationManager:(CLLocationManager *)manager
    didUpdateToLocation:(CLLocation *)newLocation
           fromLocation:(CLLocation *)oldLocation

它说6.0iOS 6.0那么它在6.0 之前已弃用或可用是什么意思。我的猜测是,我应该使用

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

应该没问题。有什么建议么?

4

1 回答 1

0

我在旧项目中也遇到了同样的问题,所以我尝试了以下方法,然后对我来说工作正常

- (void)locationManager:(CLLocationManager *)manager 
    didUpdateToLocation:(CLLocation *)newLocation 
           fromLocation:(CLLocation *)oldLocation

上面的委托在 iOS 6 中已被弃用。现在应该使用以下内容:

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

为了获取最后一个位置,只需获取数组的最后一个对象:

[locations lastObject]

换句话说,[locations lastObject](新代表)等于newLocation(旧代表)

例子

iOS6及以上

-(void)locationManager:(CLLocationManager *)manager didUpdateLocations:(NSArray *)locations {
CLLocation *newLocation = [locations lastObject];
CLLocation *oldLocation;
if (locations.count >= 2) {
    oldLocation = [locations objectAtIndex:locations.count-1];
} else {
    oldLocation = nil;
}
NSLog(@"didUpdateToLocation %@ from %@", newLocation, oldLocation);

}

如果您在 iOS6 及以下版本中使用,还请添加以下方法

 - (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation {
[self locationManager:locationManager didUpdateLocations:[[NSArray alloc] initWithObjects:newLocation, nil]];
}

如需更多参考,请遵循本教程

于 2015-07-27T07:22:12.830 回答