Trying to create dynamic NSMutableArrays in a foor loop
//Here's my for loop
for (Object *object in parseMethod.objects) {
}
objects is an NSMutableArray which stores the objects; based on the number of the objects I'd like to create unique array, something like:
NSMutableArray *array1;
NSMutableArray *array2;
NSMutableArray *array3;
//and so on...
NSMutableArray *array[n];
Anyone can share an answer how to achieve this?
NSMutableArraythat will store otherNSMutableArray's?