The game that I'm working on has a set of about 10 classes that all subview UIView, and are drawn once when they are loaded using quartz code in drawRect:
Initially, the UIView subclass that itself adds all these subviews (probably 20 instantiated objects of these classes) had a drawRect: method that would be called every frame with quartz code. This worked fine when tested on an iPhone 3G, but on an iPhone 4 the animation became very slow, and my best guess is that the higher resolution made the drawRect: take longer than one frame's duration to complete.
Regardless, I read that drawRect: is not good to call every frame. But I still need to update the animation once per frame, or at least once every other frame. I removed the drawRect: method of the container view and wrote an OpenGL view that takes care of the animation instead. Except it runs VERY slowly and makes the app lag in the exact same way, or perhaps worse.
I get that the high resolution slows animation down. But I play other apps that have been published that have much more complicated animations and graphics than mine, and they are seamless and entirely without frame skipping. Any suggestions on what I'm doing wrong?