Hello,
I need to a variable which holds a 24 bits value, what should I use ? Also, do you know a list of all available types in Objc?
Thanks a lot.
Hello,
I need to a variable which holds a 24 bits value, what should I use ? Also, do you know a list of all available types in Objc?
Thanks a lot.
You could use an int
. It will hold 24 bits. (32, actually)
An array of 3 unsigned chars will be 24 bits (on most systems).