I'm making an iPhone game, and using UIViews to draw objects in the game. Most of the time I have no performance problems. However, once I have around 15 to 20 objects on screen, and maybe 5 of them moving around, performance gets really bad, especially on the 3G. The frame rate can drop as low as around a single frame per second.
Is this simply a limitation of using UIViews, or should it be able to handle this many UIViews on screen at the same time?
In order to isolate the problem, I've made drawing these UIViews very simple: drawing a red rectangle. drawRect is only getting called once per view. The view hierarchy is very simple and shallow. I'm using CADisplayLink to update UIView locations on each frame.
There's very little else going on, so I'd like to hear if anyone else has had success using this number of UIViews.