gpt4 book ai didi

ios - 地理编码不返回邮政编码

转载 作者:行者123 更新时间:2023-12-01 17:52:01 27 4
gpt4 key购买 nike

我遇到了邮政编码问题。我使用 CLGeocoderreverseGeocodeLocation:completionHandler: 方法。一切看起来都很好,除了在地标中我没有邮政编码。它是 nil 。我仔细检查了位置对象和位置标记 - 一切正常且正确。有人可以为我澄清这个问题吗?地理编码器是否只返回某些国家(美国、英国等)的邮政编码?这是代码:

CLGeocoder *geocoder = [[CLGeocoder alloc] init] ;
CLLocation *currentLocation = self.locationManager.location;
[geocoder reverseGeocodeLocation:currentLocation completionHandler:^(NSArray *placemarks, NSError *error) {
if (!error) {
CLPlacemark *placemark = [placemarks firstObject];
if (placemark.postalCode) {
NSLog(@"%@", placemark.postalCode);
} else {
NSLog(@"No postal code");
}
} else {
NSLog(@"Error occurred");
}
}];

最佳答案

CLGeocoder 不会只返回一个城市的邮政编码,因为有多个邮政编码。

要获取邮政编码,您需要更具体,例如写街道。

关于ios - 地理编码不返回邮政编码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27127734/

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