vote up 0 vote down star

NSTimeInterval == double; (e.g. 169.12345666663)

How can I round up this double so that there are only 2 digits left after the "dot"?
It would be very good if the result is a NSNumber.

flag

3 Answers

vote up 3 vote down check

If this is for display purposes, take a look at NSNumberFormatter.

If you really want to round the double in your calculations for some reason, you can use the standard C round() function.

link|flag
vote up 1 vote down

In the vast majority of cases rounding a number is something you should only do at display time. The properties of floating-point numbers (double or not) make it impossible to store certain numbers at a fixed-precision.

For information about formatting a number so it displays to two decimal places, see this other post.

link|flag
vote up 0 vote down

Does this HumanReadableTimeInterval help? It returns a NSString, though. Alternatively, you can round yourself by multiplying with 100, converting to an integer and dividing through 100 again.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.