Ios 如何获取CLPlacemark管理区域的未修订版本

Ios 如何获取CLPlacemark管理区域的未修订版本,ios,swift,cllocationmanager,clplacemark,Ios,Swift,Cllocationmanager,Clplacemark,调用此委托方法时: func displayLocationInfo (placemark: CLPlacemark) { self.locationManager.stopUpdatingLocation() // Find current state self.currentState = placemark.administrativeArea } 例如,行政区域返回CA而不是加利福尼亚。我可以让行政区域返回全名而不是缩写版本吗。任何帮助都将不胜感激 不

调用此委托方法时:

func displayLocationInfo (placemark: CLPlacemark) {

    self.locationManager.stopUpdatingLocation()

    // Find current state
    self.currentState = placemark.administrativeArea



}

例如,行政区域返回CA而不是加利福尼亚。我可以让行政区域返回全名而不是缩写版本吗。任何帮助都将不胜感激

不,没有办法设定这个。根据Apple Docs:“此属性中的字符串可以是行政区域的拼写名称,也可以是其指定的缩写(如果存在)。”该死,但感谢您的帮助