Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

When should I be using NSInteger vs int when developing for iOS? I see in the apple sample code they use NSInteger (or NSUInteger) when passing a value as an argument to a function or returning a value from a function.

- (NSInteger)someFunc;...
- (void)someFuncWithInt:(NSInteger)value;...

But w/in a function they're just using int to track a value

for (int i; i < something; i++)
...

int something;
something += somethingElseThatsAnInt;
...

I've read (been told) that NSInteger is a safe way to reference an integer in either a 64-bit or 32-bit environment so why use int at all?

share|improve this question

5 Answers

up vote 101 down vote accepted

You usually want to use NSInteger when you don't know what kind of processor architecture your code might run on, so you may for some reason want the largest possible int type, which on 32 bit systems is just an int, while on a 64-bit system it's a long.

I'd stick with using NSInteger instead of int/long unless you specifically require them.

NSInteger/NSUInteger are defined as *dynamic typedef*s to one of these types, and they are defined like this:

#if __LP64__ || TARGET_OS_EMBEDDED || TARGET_OS_IPHONE || TARGET_OS_WIN32 || NS_BUILD_32_LIKE_64
typedef long NSInteger;
typedef unsigned long NSUInteger;
#else
typedef int NSInteger;
typedef unsigned int NSUInteger;
#endif

With regard to the correct format specifier you should use for each of these types, see the String Programming Guide's section on Platform Dependencies

share|improve this answer
2  
Additionally, I would say it is best to use NSInteger unless you specifically require int or long int. – v01d Dec 14 '10 at 23:08
1  
@Shizam It's possible that using an int would be better suited to even a long. Maybe you know that it wont exceed a certain range, and therefore think it will be more memory-efficient to simply use int. – Jacob Relkin Dec 14 '10 at 23:27
1  
Ah yes memory, always comes back to that. Ok, I think I got a good decision matrix now on when to use NSInteger vs int. – Shizam Dec 14 '10 at 23:31
1  
@Shizam: The best reason for using an int is because you're working with an API that uses ints. Very little outside of Cocoa uses NSInteger, so if you're working with another library, it will want to talk in ints rather than NSIntegers. – Chuck Dec 15 '10 at 1:20
8  
I disagree with this answer. The only thing I would use NSInteger for is passing values to and from an API that specifies it. Other than that it has no advantage over an int or a long. At least with an int or a long you know what format specifiers to use in a printf or similar statement. – JeremyP Dec 15 '10 at 9:13
show 6 more comments

Why use int at all?

Apple uses int because for a loop control variable (which is only used to control the loop iterations) int datatype is fine, both in datatype size and in the values it can hold for your loop. No need for platform dependent datatype here. For a loop control variable even a 16-bit int will do most of the time.

Apple uses NSInteger for a function return value or for a function argument because in this case datatype [size] matters, because what you are doing with a function is communicating/passing data with other programs or with other pieces of code; see the answer to When should I be using NSInteger vs int? in your question itself...

they [Apple] use NSInteger (or NSUInteger) when passing a value as an argument to a function or returning a value from a function.

share|improve this answer

If you dig into NSInteger's implementation:

#if __LP64__
typedef long NSInteger;
#else
typedef int NSInteger;
#endif

Simply, the NSInteger typedef does a step for you: if the architecture is 32-bit, it uses int, if it is 64-bit, it uses long. Using NSInteger, you don't need to worry about the architecture that the program is running on.

share|improve this answer
5  
You do need to worry, because the correct format specifier for NSInteger is dependent on the architecture. – JeremyP Dec 15 '10 at 9:15
The simplest way according to Apple manual is casting value to the biggest numeric type long long. So all numeric types will use same type specifier. – Eonil Jul 21 '12 at 19:24

OS X is "LP64". This means that:

int is always 32-bits.

long long is always 64-bits.

NSInteger and long are always pointer-sized. That means they're 32-bits on 32-bit systems, and 64 bits on 64-bit systems.

The reason NSInteger exists is because many legacy APIs incorrectly used int instead of long to hold pointer-sized variables, which meant that the APIs had to change from int to long in their 64-bit versions. In other words, an API would have different function signatures depending on whether you're compiling for 32-bit or 64-bit architectures. NSInteger intends to mask this problem with these legacy APIs.

In your new code, use int if you need a 32-bit variable, long long if you need a 64-bit integer, and long or NSInteger if you need a pointer-sized variable.

share|improve this answer
5  
The history is spot on, but the advice is terrible. If you need a 32-bit variable use int32_t. If you need a 64-bit integer use int64_t. If you need a pointer-sized variable use intptr_t. – Stephen Canon Dec 14 '10 at 23:54
1  
Stephen, your advice is to never use int, long, or NSInteger then? – Darren Dec 14 '10 at 23:58
1  
No, my advice is to never use them if you require an integer type of known fixed-size. The <stdint.h> types exist for that purpose. – Stephen Canon Dec 15 '10 at 0:09
Stephen, my answer was in response to the question "When to use NSInteger vs int", not "what's the cross-platform typename of a 32-bit integer". If someone's trying to decide between NSInteger and int they might as well know how big they are on the platforms they support. – Darren Dec 15 '10 at 1:01
5  
Sure. The problem is that your advice is "use int if you need a 32-bit variable". Unfortunately, the assumption that int is 32 bits is not portable. Ditto for the other size assumptions you described. One or more of them are broken on many other platforms, and might easily be broken on a future OS X or iOS platform. If you actually need a 32-bit integer, you use int32_t. Period. If you just need a generic integer variable and don't have specific size requirements, then sure, use int/long/etc. – Stephen Canon Dec 15 '10 at 2:57
show 3 more comments

On iOS, it currently does not matter if you use int or NSInteger. It will matter more if/when iOS moves to 64-bits.

Simply put, NSIntegers are ints in 32-bit code (and thus 32-bit long) and longs on 64-bit code (longs in 64-bit code are 64-bit wide). The most likely reason for using NSInteger is to not break existing 32-bit code.

CGFloat has the same issue: on 32-bit (at least on OS X), it's float; on 64-bit, it's double.

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.