I\'m using the following piece of Objective-C code to format a NSNumber, and it works fine most of the time, but it doesn\'t quite do what I want when the NSNumber object ho
I believe what you are looking for is: "%.2f"
Worst case scenario, you can split the value, check if there is anything after the decimal. If there isn't add the 00 by hand?