EveryBody..
i want to create one 8*8 dimensional array in objective c..
(
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
[0, 0, 0, 0, 0, 0, 0, 0],
)
like that.. And also use as one of the object can moved in it.. Like want to move
MOVE_ARRAY = array([0, 0], [0, 2])
And also check the array's any position like 5*6 or 4*3 any.. So, Can any one help me about how to initialize , and how to use in code ? Thanks.