As the title says I want to ask about the fundamental data types in objective-c on iPhone. So are there any good documentation where this is written? I need the size on which the variable is represented and the range of the variable. So in example: short int - 2 bytes - signed: -32768 to 32767 and unsigned: 0 to 65535 This is only an example. So please if anybody knows about a site just write it here. :)
|
feedback
|
|
This is a good overview: http://reference.jumpingmonkey.org/programming_languages/objective-c/types.html or run this code:
When run on an iPhone 3GS (iPod Touch and older iPhones should yield the same result) you get:
| ||||
|
feedback
|
|
Note that you can also use the C99 fixed-width types perfectly well in Objective-C:
The wikipedia page has a decent description of what's available in this header if you don't have a copy of the C standard (you should, though, since Objective-C is just a tiny extension of C). You may also find the headers | |||
|
feedback
|