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
Got this one working on playgrounds
let locale = NSLocale(localeIdentifier: "FI") let unsortedCountries = NSLocale.isoCountryCodes.flatMap { locale.localizedString(forCountryCode: $0) } let sortedCountries = unsortedCountries.sorted()