Skip to content

Instantly share code, notes, and snippets.

@dodyw
Created January 29, 2014 07:14
Show Gist options
  • Save dodyw/8683234 to your computer and use it in GitHub Desktop.
Save dodyw/8683234 to your computer and use it in GitHub Desktop.
currency format
NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
[numberFormatter setGroupingSeparator:@"."];
[numberFormatter setGroupingSize:3];
[numberFormatter setUsesGroupingSeparator:YES];
[numberFormatter setDecimalSeparator:@","];
[numberFormatter setNumberStyle:NSNumberFormatterDecimalStyle];
[numberFormatter setMaximumFractionDigits:0];
NSString *nominal = [numberFormatter stringFromNumber:[dict valueForKey:@"amount"]];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment