I am looking for an method to create and mulidimensional array in objective C.
my requirement is an array similar to
float array = new float [3*2];
float array = new float [[3*2][3*2]];
these two being in a java format
I would appreciate it if anyone could help me in how i can initialize such arrays in objective-c . Thank you