Iphone, Obtaining a List of countries in an NSArray

后端 未结 6 1847
暗喜
暗喜 2020-12-04 09:04

I have a menu that let\'s a user select a country. Exactly like that in the contacts.app country menu within the address field.

Does anyone know a simple way of get

相关标签:
6条回答
  • 2020-12-04 09:21

    Pretty much the same answer as above, just uses flatMap to be shorter and swiftier.

    let locale = NSLocale.currentLocale()
    var countries = NSLocale.ISOCountryCodes().flatMap { countryCode in
        return locale.displayNameForKey(NSLocaleCountryCode, value: countryCode)
    }
    countries.sortInPlace()
    
    0 讨论(0)
  • 2020-12-04 09:25

    Use [[NSLocale currentLocale] displayNameForKey:NSLocaleCountryCode value:countryCode] (where countryCode is an item in your list of country codes) to get the country's name in the user's current locale.

    0 讨论(0)
  • 2020-12-04 09:26

    Swift 3

    let locale = Locale.current
    let countries = Locale.isoRegionCodes.map {
        locale.localizedString(forRegionCode: $0)!
    }.sorted()
    
    0 讨论(0)
  • 2020-12-04 09:35

    You might want to define locale..
    and there is too much autoreleased memory, which might be critical, ye never know. so create autoreleased pool inside the for loop as well. I've this:

    NSMutableArray * countriesArray = [[NSMutableArray alloc] init]; 
    NSLocale *locale = [[[NSLocale alloc] initWithLocaleIdentifier: @"en_US"] autorelease];
    
    NSArray *countryArray = [NSLocale ISOCountryCodes]; 
    for (NSString *countryCode in countryArray) 
    {
        NSAutoreleasePool * pool = [[NSAutoreleasePool alloc] init];
    
        NSString *displayNameString = [locale displayNameForKey:NSLocaleCountryCode value:countryCode];
        [countriesArray addObject:displayNameString];
        [pool release];
    
    }
    
    [countriesArray sortUsingSelector:@selector(compare:)];
    
    0 讨论(0)
  • 2020-12-04 09:38

    Thanks chuck.

    If anyone is interested or wanted to find the same solution here is my code for a sorted array of countries.

    Objective-C:

    NSLocale *locale = [NSLocale currentLocale];
    NSArray *countryArray = [NSLocale ISOCountryCodes];
    
    NSMutableArray *sortedCountryArray = [[NSMutableArray alloc] init];
    
    for (NSString *countryCode in countryArray) {
    
        NSString *displayNameString = [locale displayNameForKey:NSLocaleCountryCode value:countryCode];
        [sortedCountryArray addObject:displayNameString];
    
    }
    
    [sortedCountryArray sortUsingSelector:@selector(localizedCompare:)];
    

    Swift:

    let locale = NSLocale.currentLocale()
    let countryArray = NSLocale.ISOCountryCodes()
    var unsortedCountryArray:[String] = []
    for countryCode in countryArray {
        let displayNameString = locale.displayNameForKey(NSLocaleCountryCode, value: countryCode)
        if displayNameString != nil {
            unsortedCountryArray.append(displayNameString!)
        }
    }
    let sortedCountryArray = sorted(unsortedCountryArray, <)
    

    Swift 3

        let locale = NSLocale.current
        let unsortedCountries = NSLocale.isoCountryCodes.map { locale.localizedString(forRegionCode: $0)! }
        let sortedCountries = unsortedCountries.sorted()
    
    0 讨论(0)
  • 2020-12-04 09:46

    Got this one working on playgrounds

    let locale = NSLocale(localeIdentifier: "FI")
    let unsortedCountries = NSLocale.isoCountryCodes.flatMap { locale.localizedString(forCountryCode: $0) }
    let sortedCountries = unsortedCountries.sorted()
    
    0 讨论(0)
提交回复
热议问题