小编典典

从国家代码获取国家名称

swift

我已经找到了针对Objective-C的答案,但是林先生很难迅速做到这一点。

我用它来获取当前位置的国家代码:

     let countryCode = NSLocale.currentLocale().objectForKey(NSLocaleCountryCode) as! String
    print(countryCode)
// printing for example US

但是,如何将该国家/地区代码转换为国家/地区名称,例如在此示例中,将“ US”转换为“ United States”?


阅读 610

收藏
2020-07-07

共1个答案

小编典典

迅捷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
    }
}
2020-07-07