Im new to Objective-c, and what im trying to do is to create a 2 dimensional array of integers.
I know i can use C, in the following way:
int levelData[3][4] = {{1,1,1,1}, {1,0,0,1}, {1,1,1,1}};
Thing is, i want other other classes to be able to acces this data, so i have to include this variable in the header file, this is where the problem is:
declaring as int **levelData, int levelData[3][4] or whatsoever doesnt work.
Can anyone help me?