In my app I need to display the appropriate currency symbol for the user's current locale. I'm not displaying currency values, just the symbol.
Any ideas?
In my app I need to display the appropriate currency symbol for the user's current locale. I'm not displaying currency values, just the symbol.
Any ideas?
In the AppKit or the UIKit you can get that information from NSLocale.
NSLocale can do this:
NSString *sym = [[NSLocale currentLocale] objectForKey:NSLocaleCurrencySymbol];