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
Hope this helps. This is just example how you can initial 2d array of int in code (Objective C works)
int **p; p = (int **) malloc(Nrow*sizeof(int*)); for(int i =0;i