up vote 1 down vote favorite
share [g+] share [fb]

Example: I have an NSInteger and I wrap that into an NSNumber object. Now I want to have an NSDecimal with the value of that NSInteger.

So could I ask:

NSDecimal myDecimalFromMyInteger = [myNSNumberObject decimalValue];

Or is this problematic on some way? Or must I always ask for the exact same value as I used to create the NSNumber object?

link|improve this question

feedback

1 Answer

up vote 6 down vote accepted

This is perfectly fine. From the docs:

"Returns the receiver’s value, expressed as an NSDecimal structure. ... The receiver’s value, expressed as an NSDecimal structure. The value returned isn’t guaranteed to be exact for float and double values."

As long as you're aware of the inherent precision implications, this is a perfectly legal and sane thing to do.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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