How do I animate a UIImageView in an arc, starting at point A, passing through point C, and ending at point B?
Asked
Active
Viewed 625 times
-1
-
1Is this homework? If yes, what have you tried? – Feb 05 '11 at 23:21
-
This is asking something similar to this question: [How do I translate parabolically?](http://stackoverflow.com/questions/1886158/how-do-i-translate-parabolically), so the answer I provide there might apply here. – Brad Larson Feb 06 '11 at 00:07
1 Answers
1
You should animate the UIImageView
's layer
property with a CAKeyframeAnimation
, specifying a CGPathRef
for the path
property.
You can read more about key frame animation in Apple's documentation here.

Marco Mustapic
- 3,879
- 1
- 21
- 20