Assume there are 2 UIImageview s, the front and back images of a coin. How to animate the 2 UIImageviews such that the face and the back is flipping (spinning) continuously? Thanks!
+1
A:
You're probably better off with OpenGL for this. But instead of two images from faces of a coin, if you're using Core Animation, you might think about animating one view from individual frames, where you have "snapshots" of a picture of a single coin in various stages of a coin flip.
Alex Reynolds
2010-05-04 04:47:11
I agree with Alex's answer about using snapshots. 2.5D animation is fine for flipping something flat like a card but on a coin it'll look a little cheap
nduplessis
2010-05-04 05:16:15
any sample code for reference?
ohho
2010-05-04 09:03:58
Apple has some sample projects on their developer site. Definitely worth checking out.
Alex Reynolds
2010-05-14 21:58:03