I have NSMutableArraysomething like this
array =[[a1,b1,c1],[a2,b2,c2],[a3,b3,c3].......]
and I get access to this array for a specific object, for example
array.a =[a1,a2,a3]
array.b =[b1,b2,b3]
what I'm trying to do is copy all the elements that are in array.bto another array, say arrayABC.
something like that arrayABC = [a1,a2,a3....]
HOw can I do this .. suggestions are always welcome.
considers
source
share