views:

175

answers:

1

I am resizing a control via

[UIView beginAnimations]
[self setTransform:CGAffineTransformMakeScale(0.5f, 0.5f)];
[UIView commitAnimations]

The animation looks beautiful on the iPhone simulator but on my 2G test device it is unbearably slow and choppy. How can I improve the animation on an older iPhone? Or do I have to disable animated transitions on older devices? Thanks.

+1  A: 

My problem was too many non-opaque UIViews on the screen. I radically reduced the number through some redesign and it is very zippy now.

Elon