asedra_le
asedra_le

Reputation: 3067

Does iOS have any library supporting to format number like NSNumberFormatter for Mac OSX?

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

Answers (1)

Lily Ballard
Lily Ballard

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

Related Questions