获取Swift城市列表?

时间:2017-12-13 10:00:54

标签: swift

我获得了以下国家/地区列表:

let countries = NSLocale.isoCountryCodes.map { (code:String) -> String in
    let id = NSLocale.localeIdentifier(fromComponents: [NSLocale.Key.countryCode.rawValue: code])
    return NSLocale(localeIdentifier: "en_US").displayName(forKey: NSLocale.Key.identifier, value: id) ?? "Country not found for code: \(code)"
}

如何获取某个国家/地区的城市列表?

谢谢。

0 个答案:

没有答案