What is an easy way to break an NSArray with 4000 objects in it into multiple arrays with 30 objects each?
So right now I have an NSArray *stuff where [stuff count] = 4133.
I want to make a new array that holds arrays of 30 objects. What is a good way to loop through, breaking *stuff into new 30-object arrays, and placing them inside of a larger array?
Obviously the last array won't have 30 in it (it will have the remainder) but I need to handle that correctly.
Make sense? Let me know if there is an efficient way to do this.