views:

107

answers:

3

I have 10 small images that have to be shown quickly one after another in order to make an animation effect. Is there an easy way to do that, or must I implement an routine by myself?

A: 

This should be easy enough to do using Core Animation.

sigjuice
+3  A: 

Really easy. The UIImageView has built in support for such animations. It has two important properties: animationImages and animationDuration. I would recommend you to check the docs.

Jongsma
+1  A: 

cocos2d-iphone can do this easily. It might be overkill for your project, but it is pretty easy to work with.

Dana Holt
I think that is taking the problem an overcomplicating it by a very large factor. The UIImageView class has support for animating sequences of images as described by another answer to this question.
Jasarien