How to animate/move the view in the curve path, is it possible to do using UIAnimation.enter image description here

Like moving a view in the path as in the image.

link|improve this question

feedback

1 Answer

up vote 3 down vote accepted

You can do it using Core Animation and CAKeyFrameAnimation to define the curve points. See this tutorial: http://nachbaur.com/blog/core-animation-part-4

link|improve this answer
Thanks... I will check – Chandan Shetty SP Apr 30 '11 at 5:59
That example refers to animating layers, not whole views. I have a case where I need to move a whole UIView along a path. I can easily use animateWithDuration to get it from here to there, but I can't see how to use that to get it from here to there using a given path. When I try to string together a bunch of animateWithDuration calls, the last call always cancels the earlier ones. – EFC Dec 30 '11 at 17:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.