views:

83

answers:

2

I imagine it is just an int, but I want to verify.

Thanks Corey

A: 

Yes, just an int.

Pablo Santa Cruz
+2  A: 

I would suggest using NSInteger/NSUInteger instead of int. NS(U)Integer maps to the appropriate size based on the environment you are running in. It might not matter much for the current iPhones/iPods, but you might as well future proof your code. See CocoaDev for further discussion.

Martin Gordon