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?
|
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, |
|||||||||
|
|
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 |
|||||||||||||
|
|
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 said by others before, NSNumber is an NSObject subclass. It is not a C primitive (like int, unsigned int, float, double, etc.) NSInteger, CGFloat, NSUInteger are simple typedefs over the C primitives. The need for NSNumber arises from the need to use numbers as parameters to APIs that require Objects. Example is, when you want to store a number in an NSArray, In Core-Data, or in an NSDictionary. Are there more primitives like these that I should know about? Well, NSNumber is not a primitive type, and it wraps around all kinds of numbers (floats, integral types, booleans and so on). You should also learn about NSValue, which is the base for NSNumber. Is there one for floats? There is no "NS" typedef for float, but NSNumber can wrap around any float number: NSNumber *myPi = [NSNumber numberWithFloat:3.1415926]; Or you could use the CoreGraphics primitive type CGFloat. |
|||
|
|
