为什么要将 CLGeocoder 与 "placemarks" 的数组一起使用?

Why use CLGeocoder with an array of "placemarks"?

在尝试使用 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);
        }
    } ];

}

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

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

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

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