Reputation: 3067
I want to format a number to string by using a format string working like NSNumberFormatter for Mac OSX (NSNumberFormatter doesn't support format string). Does iOS have any library supporting to format number like NSNumberFormatter for Mac OSX?
Upvotes: 0
Views: 101
Reputation: 185831
NSNumberFormatter
exists on iOS as well.
The only difference is it only supports the 10.4+ style of formatting, it does not support the legacy 10.0 style.
Upvotes: 1