I have an NSMutableArray of NSArray’s inside it. This is my current structure:
Paused index (
(
0,
3579
),
(
1,
3538
)
)
how to search through the array and remove the object 3538? My expected result is:
Paused index (
(
0,
3579
)
)
How can I get the index of the outer array? I can already do the search but how can I remove the object in that index?
This is a very straight forward way.
Some other intelligent way should be there.
EDIT:
I think this is little better.