Sam Jarman
Sam Jarman

Reputation: 7377

Is there anything faster than UIView Animations?

Is there anything faster than UIView Animations? Mine are not keeping up,

I want to play a series of images, very fast. (i.e 10 in 80 milliseconds)

Any ideas?

As usual, greatly appreciated.

Sam

Upvotes: 1

Views: 547

Answers (2)

Brad Larson
Brad Larson

Reputation: 170317

If you are looking for a replacement for UIImageView's animationImages property, the second example on this page presents an alternative (as pointed out in this question).

Upvotes: 1

Dimitris
Dimitris

Reputation: 13680

Do you mean the UIImageView animation images? Do you want transitions between your images? If not, there is no reason to use UIView Animations.

Now to play frame-based animations, I would suggest using the UIImageView object and add your images in its animationImages array. Not sure it will keep up with the framerates you require of course, especially if the images are large.

Upvotes: 1

Related Questions