How do i produce a 2 dimensional NSMutable array as this:
Array:
=>[item1]=>[item1a,item1b,item1c...]
=>[item2]=>[item2a,item2b,item2c...]
...
=>[item10]=>[item10a,item10b,item10c...]
So far i've only been successful up to the [item1]=>[item1a,item1b,item1c...]
When i try to add more 2 dimensional array it keeps overriding the first row.
array = @[ @[ item1a, item1b ], @[ item2a, item2b ] ];. This will probably be part of the next release of Xcode.NSArrays inside ofNSArrays.