If integers cannot be written to a dictionary and then a plist, but NSSNumbers can. Is it better to use NSNumbers throughout the app, rather than needing to convert every-time saving or loading a dictionary from a plist?
|
As a generalization: Just stick with POD types until you need to use an object based representation, such as In some cases, it may make sense to use |
|||||
|
|
NSNumber is object inherited from NSValue wrapper object. int is not object. if use NSNumber u can get more and more function to utilize with them. NSNumber is a class that helps you to store numeric types as object. It has methods to convert between different types and methods to retrieve a string representation of your numeric value. If you use a variable day of type NSNumber* the way you did in your example, you are not modifying the value of day but its memory address. |
|||
|
|
|
It all depends on your need. But, if the API requires you to use int, you should use int. It it asks you to use NSNumber you should use NSNumber. For example, if you are using a UISegmentedControl, and you want to select a segment, then,
|
|||
|
|
NSIntegeroverint. This is more portable among various versions Of OS X. – mouviciel Aug 30 '11 at 8:52NSNumber(an object) for anint(a "scalar value"). It would be incredibly awkward to keep every numerical quantity in anNSNumberand convert from/to for every computation. UsingNSIntegerinstead ofint, on the other hand, is a reasonable thing to do. – Hot Licks Jan 20 '12 at 16:45