vote up 0 vote down star
2

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 getting a list of countries? I have used NSLocale to generate an array of countries but it's only the country codes unfortunately and not the human readable equivalent. I don't want 'GB' I want Great Britain.

Any ideas?

Thanks

flag

67% accept rate

2 Answers

vote up 3 vote down check

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.

link|flag
vote up 2 vote down

Thanks chuck.

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

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(compare:)];
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.