我已经找到了针对Objective-C的答案,但是林先生很难迅速做到这一点。
我用它来获取当前位置的国家代码:
let countryCode = NSLocale.currentLocale().objectForKey(NSLocaleCountryCode) as! String
print(countryCode)
// printing for example US
但是,如何将该国家/地区代码转换为国家/地区名称,例如在此示例中,将“US”转换为“United States”?
最佳答案
swift 3
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
}
}