为什么要将CLGeocoder与“地标”数组一起使用?

时间:2016-08-06 18:02:12

标签: ios objective-c cllocationmanager cllocation clgeocoder

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

}

但是,我不太明白为什么在完成处理程序部分需要一系列“地标”以及为什么我们应该使用“地标”的最后一个对象(我也看到人们使用第一个对象?)。 / p>

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

1 个答案:

答案 0 :(得分:2)

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

(你大部分时间可能只得到一场比赛,在这种情况下,第一个和最后一个元素是相同的。)