How can I get the currency symbols for the corresponding currency code with Swift (macOS).
Example:
let countryCode = (Locale.current as NSLocale).object(forKey: .currencySymbol) as? String ?? "$"
Above will give current currency Symbol, For UK it gives me = £ Apple Doc