-1

How do I animate a UIImageView in an arc, starting at point A, passing through point C, and ending at point B?

Brad Larson
  • 170,088
  • 45
  • 397
  • 571
  • 1
    Is 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 Answers1

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