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
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.
[[NSLocale currentLocale] displayNameForKey:NSLocaleCountryCode value:countryCode]