Hello, i'm starting in iPhone devel and i need to use a multidimensional array.
I init it using:
NSArray *multi=[NSArray
arrayWithObjects:[NSMutableArray arrayWithCapacity:13],
[NSMutableArray array],nil];
when i try to assign values to n-th cell like:
[[multi objectAtIndex:4] addObject:@"val"];
App hangs because of index 4 beyond bounds [0 .. 1].
Which is the correct way to init my multi array?
Thanks in advance and greetings c.