I am new to Objective-C. How can I print a float as, for example, 3.45 instead of 3.45555555555?
|
|
||||
|
|
Try formatting the float like this:
The Take a look here for more detail. Objective-C's |
|||||||
|
|
Depends on how you're printing it. If you want to show it in a GUI (which is probably the common case for Cocoa and Cocoa Touch apps), use an NSNumberFormatter and set it to have two decimal places. If you're printing it through NSLog() or printf(), you'd use a format specifier along the lines of "%.2f". |
|||
|
|