Justin Kredible
Justin Kredible

Reputation: 8414

Currency symbol for users current locale

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

Answers (2)

jtbandes
jtbandes

Reputation: 118681

NSLocale can do this:

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

Upvotes: 18

NSResponder
NSResponder

Reputation: 16861

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

Upvotes: 0

Related Questions