Hi all,
I currently have a game which uses one single UIView to draw a number of sprites onto the screen in its drawrect method every game tic. I have been advised that for performance it would be better to separate out each sprite into it's own UIView.
My questions are :
- Structurally how does this work ? Do I create one UIView and then add further UIViews as a subview ?
- Should the gamecontroller call one UIView and then that UIView call the next ? Or should it return to the game controller.
Many thanks in advance,
Martin