How do I pull a specified number of items from NSMutableArray at a given index ?
given NSMutableArray *nsmarrRow; 1000 items
I want to get 20 elements starting at index = 10 ?
[nsmarrRow objectAtIndex: 10]; this pull 1 item at this index.
Do I have to use a for loop or is there a method in the NSMutableArray class?
thanks
[nsmarrRow subarrayWithRange:NSMakeRange(10, 20)]