如何在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];
}
在Swift中,我不能从这里传递:
if (!countriesPickerShown) {
var countries: NSMutableArray = NSMutableArray()
countries = NSMutableArray.arrayWithCapacity((NSLocale.ISOCountryCodes).count) // Here gives the Error. It marks NSLocale.ISOCountryCodes and .count
你们有人知道这件事吗?
谢谢
这是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)")
}
首先,ISOCountryCodes
需要参数括号,所以它将是ISOCountryCodes()
。其次,您不需要在NSLocale
和ISOCountryCodes()
周围加上括号。此外,arrayWithCapacity已被弃用,这意味着它已从语言中删除。它的工作版本应该像这样
if (!countriesPickerShown) {
var countries = NSMutableArray()
countries = NSMutableArray(capacity: (NSLocale.ISOCountryCodes().count))
}
这是一个操作而不是属性
if let codes = NSLocale.ISOCountryCodes() {
println(codes)
}