gpt4 book ai didi

ios - 如何从 iOS9 中的 AddressDictionary 获取格式化地址 NSString?

转载 作者:行者123 更新时间:2023-11-28 08:57:21 24 4
gpt4 key购买 nike

由于 ABCreateStringWithAddressDictionary 在 iOS9 中被弃用,从 CLGeocoder 获取地址字符串还有什么其他选择?

最佳答案

这是我的解决方案:

let geocoder = CLGeocoder()
geocoder.reverseGeocodeLocation(location, completionHandler: { (placemarks, error) in

if error != nil {
print("Error: \(error?.localizedDescription)")
}

if let myMarks = placemarks {
if let placemark = myMarks.last {
if let addressLine = (placemark.addressDictionary?["FormattedAddressLines"] as? [String]) {
self.addressLabel.text = addressLine.joined(separator: ", ")
}
}
}
})

El Key "FormattedAddressLines"返回一个数组,顺序如下:姓名、街道、城市、州、邮政编码、国家/地区。如果您打印 addressLine,您会看到类似这样的内容:“Apple Inc., 1 Infinite Loop, Cupertino, CA 95014, United States”。

关于ios - 如何从 iOS9 中的 AddressDictionary 获取格式化地址 NSString?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32750143/

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