Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
Note that memory allocation is expensive. You might want to make your own class similar to NSNumber that would be mutable. – rightfold Jul 12 '11 at 10:46
Prefer NSInteger over int. This is more portable among various versions Of OS X. – mouviciel Aug 30 '11 at 8:52
You can's simply substitute an NSNumber (an object) for an int (a "scalar value"). It would be incredibly awkward to keep every numerical quantity in an NSNumber and convert from/to for every computation. Using NSInteger instead of int, on the other hand, is a reasonable thing to do. – Hot Licks Jan 20 '12 at 16:45

3 Answers

up vote 3 down vote accepted

As a generalization: Just stick with POD types until you need to use an object based representation, such as NSNumber. The performance is much better with the PODs, but you'll need NSNumber in some cases.

In some cases, it may make sense to use NSNumber instead -- this is typically when you reuse a NSNumber often -- this is to avoid making a ton of duplicate NSNumbers. Such occurrences are practical only rarely beyond serialization and generic objc interfaces (bindings, transformers, dictionaries).

share|improve this answer
1  
The great thing is that KVC supports autoboxing, i.e. conversion between scalar types and NSNumber, so there's little need to use NSNumber in properties. – DrMickeyLauer Feb 2 '12 at 11:55

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.

http://developer..com/library/mac/#documentation/Cocoa/Reference/Foundation/Classes/NSNumber_Class/Reference/Reference.html

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.

share|improve this answer

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,

[segmentedControl setSelectedSegmentIndex:aIntVar]; // Can not use NSNumber here
// or
[segmentedControl setSelectedSegmentIndex:[aNumber intValue]];
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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