views:

251

answers:

2

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?

A: 

In the AppKit or the UIKit you can get that information from NSLocale.

NSResponder
+7  A: 

NSLocale can do this:

NSString *sym = [[NSLocale currentLocale] objectForKey:NSLocaleCurrencySymbol];
jtbandes