I have a NSString value of @"78000". How do I get this in currency format, i.e. $78,000 with it remaining an NSString.
|
feedback
|
|
You need to use a number formatter. Note this is also how you would display dates/times etc in the correct format for the users locale
| ||||
|
feedback
|
|
The decimal/cents at the end can be controlled as follows:
Here's the documentation link from apple | |||
|
feedback
|
|
The answer above will convert a number but here is a method for actually converting a NSString to currency format
| |||
|
feedback
|