I'm currently trying to create an endlessly scrolling background with a character who jumps up and down and collects items that come along the way. My problem lies with the items that need to be created and then moved.
I've looked at CCSpriteBatchNode and NSMutableArray but I'm not sure which to use.
I reviewed Steffen Itterheim's example from his book regarding creating bullets while initializing and then using them when needed. I thought that this would be inefficient and taxing on the iPhone. Also, aren't all the bullets continuously updated even if they are not visible, using up even more of the iPhone's limited memory and CPU?
On the other hand, if I had a NSMutableArray and added the items as I needed them and updated a selective few that currently exist, would this be more efficient.
Thus, my main problem is choosing between NSMutableArray or CCSpriteBatchNode and finding out which is the most efficient in creating numerous, continuously updating objects.
Thank you!