(I develop for iPhone) What's the difference between NSNumber and NSInteger? Are there more primitives like these that I should know about/use? Is there one for floats?
|
2
|
|
|
|
|
|
The existing answers are useful; adding to them: Yes, Example: the return value of My guess about Also, just to be clear about why you might use And, as iKenndac has pointed out, |
||||
|
|
|
NSInteger is just like a traditional NSNumber is useful when you need to stick a number into an NSArray or NSDictionary. The standard practice is to use these collections versus rolling your own; the drawback is that they can only contain Objective-C objects. NSNumber essentially wraps an
For performance reasons, if you can, use primitive types (like int, float, int[]). However, sometimes you cannot avoid NSArray/NSNumber, such as when you are reading or writing entries into a |
||||
|
|
|
As a general rule, if you need to store a number somewhere, use You can wrap an
... and get it back:
You can find out more info here: http://iphonedevelopertips.com/cocoa/nsnumber-and-nsinteger.html |
||||||||||||
|
