Skip to content

Instantly share code, notes, and snippets.

@ericdke
Last active January 9, 2016 22:37
Show Gist options
  • Select an option

  • Save ericdke/d23b341d6a73fa8b8a47 to your computer and use it in GitHub Desktop.

Select an option

Save ericdke/d23b341d6a73fa8b8a47 to your computer and use it in GitHub Desktop.
Get list of country names
func getAllCountryNames() -> [String] {
let countryCodes = NSLocale.ISOCountryCodes()
return countryCodes.map() { countryCode in
return NSLocale.currentLocale().displayNameForKey(NSLocaleCountryCode, value : countryCode)!
}
}
print(getAllCountryNames())
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment