gpt4 book ai didi

ios - 为什么将 CLGeocoder 与 "placemarks"数组一起使用?

转载 作者:行者123 更新时间:2023-11-28 21:23:52 25 4
gpt4 key购买 nike

在尝试使用 CLGeocoder 时,我从在线教程中获得了这个示例: https://www.appcoda.com/how-to-get-current-location-iphone-user/

- (void)locationManager:(CLLocationManager *)manager didUpdateToLocation:(CLLocation *)newLocation fromLocation:(CLLocation *)oldLocation
{
NSLog(@"didUpdateToLocation: %@", newLocation);
CLLocation *currentLocation = newLocation;

if (currentLocation != nil) {
longitudeLabel.text = [NSString stringWithFormat:@"%.8f", currentLocation.coordinate.longitude];
latitudeLabel.text = [NSString stringWithFormat:@"%.8f", currentLocation.coordinate.latitude];
}

// Reverse Geocoding
NSLog(@"Resolving the Address");
[geocoder reverseGeocodeLocation:currentLocation completionHandler:^(NSArray *placemarks, NSError *error) {
NSLog(@"Found placemarks: %@, error: %@", placemarks, error);
if (error == nil && [placemarks count] > 0) {
placemark = [placemarks lastObject];
addressLabel.text = [NSString stringWithFormat:@"%@ %@\n%@ %@\n%@\n%@",
placemark.subThoroughfare, placemark.thoroughfare,
placemark.postalCode, placemark.locality,
placemark.administrativeArea,
placemark.country];
} else {
NSLog(@"%@", error.debugDescription);
}
} ];

}

但是,我不太明白为什么它在完成处理程序部分需要一个“地标”数组,为什么我们要使用“地标”的最后一个对象(我也看到有人使用第一个对象?)。

我已经通读了 apple 文档,但在使用方面没有找到任何好的解释: https://developer.apple.com/library/ios/documentation/CoreLocation/Reference/CLGeocoder_class/

最佳答案

您正在对纬度/经度进行反向地理编码。它可能产生不止一个地址。如果您获得多个并且不关心使用哪个,则提取数组中的第一个或最后一个地标对象同样有效。

(大多数时候你可能只会得到一个匹配项,在这种情况下,第一个和最后一个元素是相同的。)

关于ios - 为什么将 CLGeocoder 与 "placemarks"数组一起使用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38807273/

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