Whats the easiest way to declare a two dimensional array in Objective-C? I am reading an matrix of numbers from a text file from a website and want to take the data and pla
This will also work:
NSArray *myArray = @[ @[ @1, @2, @3, @4], @[ @1, @2, @3, @4], @[ @1, @2, @3, @4], @[ @1, @2, @3, @4], ];
In this case it is a 4x4 array with just numbers in it.