如何在Swift中获取包含所有国家/地区名称的数组? 我试图转换Objective-C中的代码,这就是:
if (!pickerCountriesIsShown) {
NSMutableArray *countries = [NSMutableArray arrayWithCapacity: [[NSLocale ISOCountryCodes] count]];
for (NSString *countryCode in [NSLocale ISOCountryCodes])
{
NSString *identifier = [NSLocale localeIdentifierFromComponents: [NSDictionary dictionaryWithObject: countryCode forKey: NSLocaleCountryCode]];
NSString *country = [[NSLocale currentLocale] displayNameForKey: NSLocaleIdentifier value: identifier];
[countries addObject: country];
}
在斯威夫特,我无法从这里过去:
if (!countriesPickerShown) {
var countries: NSMutableArray = NSMutableArray()
countries = NSMutableArray.arrayWithCapacity((NSLocale.ISOCountryCodes).count) // Here gives the Error. It marks NSLocale.ISOCountryCodes and .count
你们中有谁知道这个吗?
由于
答案 0 :(得分:4)
这是NSLocale的Swift扩展,它返回一组Swift友好的Locale结构,包含国家名称和国家/地区代码。它可以很容易地扩展到包括其他国家数据。
extension NSLocale {
struct Locale {
let countryCode: String
let countryName: String
}
class func locales() -> [Locale] {
var locales = [Locale]()
for localeCode in NSLocale.ISOCountryCodes() {
let countryName = NSLocale.systemLocale().displayNameForKey(NSLocaleCountryCode, value: localeCode)!
let countryCode = localeCode as! String
let locale = Locale(countryCode: countryCode, countryName: countryName)
locales.append(locale)
}
return locales
}
}
然后很容易得到像这样的国家:
for locale in NSLocale.locales() {
println("\(locale.countryCode) - \(locale.countryName)")
}
答案 1 :(得分:3)
首先ISOCountryCodes
需要参数括号,所以它应该是ISOCountryCodes()
。其次,您不需要NSLocale
和ISOCountryCodes()
附近的括号。此外,不推荐使用arrayWithCapacity,这意味着它将从语言中删除。这个的工作版本有点像这样
if (!countriesPickerShown) {
var countries = NSMutableArray()
countries = NSMutableArray(capacity: (NSLocale.ISOCountryCodes().count))
}
答案 2 :(得分:1)
这是一项行动而不是财产
if let codes = NSLocale.ISOCountryCodes() {
println(codes)
}