Reputation: 8414
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?
Upvotes: 9
Views: 1561
Reputation: 118681
NSLocale can do this:
NSString *sym = [[NSLocale currentLocale] objectForKey:NSLocaleCurrencySymbol];
Upvotes: 18
Reputation: 16861
In the AppKit or the UIKit you can get that information from NSLocale.
Upvotes: 0