Skip to content

Instantly share code, notes, and snippets.

@dezinezync
Last active August 29, 2015 13:56
Show Gist options
  • Select an option

  • Save dezinezync/9273145 to your computer and use it in GitHub Desktop.

Select an option

Save dezinezync/9273145 to your computer and use it in GitHub Desktop.
currency Formatter
// Solution from http://stackoverflow.com/questions/5036971/find-locale-currency-for-iphone-programmatically/5039433#5039433
NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init];
[formatter setNumberStyle:NSNumberFormatterCurrencyStyle];
[formatter setLocale:[NSLocale currentLocale]];
NSString *localizedMoneyString = [formatter stringFromNumber:myCurrencyNSNumberObject];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment