hi i am new iphone programmer
i want to know that can we create array of integer,array of strings….etc seperatly
like c++
if yes then how….
i have read about the example given on this site but that is c style of array….
please reply
hi i am new iphone programmer i want to know that can we create
Share
NSArrayis the standard array class in Cocoa/Cocoa Touch. It can contain objects, but not primitives.You can store integers in an array by wrapping them with an
NSNumberobject like so:Then you can store it in an array like so: