I have an NSMutableArray that contains an array inside it. the structure is like this.
pseudocode:
myArray[0][1]
my question is how am I going to remove that object from my array? I know I can use [array removeObjectAtIndex:int] which only takes one index(or outer index for this case), but how can I remove an inner array object?