从国家代码获取国家名称
我已经找到了针对Objective-C的答案,但是林先生很难迅速做到这一点。
我用它来获取当前位置的国家代码:
let countryCode = NSLocale.currentLocale().objectForKey(NSLocaleCountryCode) as! String print(countryCode)
// printing for example US
但是,如何将该国家/地区代码转换为国家/地区名称,例如在此示例中,将“ US”转换为“ United States”?
回答:
func countryName(from countryCode: String) -> String { if let name = (Locale.current as NSLocale).displayName(forKey: .countryCode, value: countryCode) {
// Country name was found
return name
} else {
// Country name cannot be found
return countryCode
}
}
以上是 从国家代码获取国家名称 的全部内容, 来源链接: utcz.com/qa/418164.html