Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a layer that will move from point A to point B on a UIBezierPath. I have found a lot of samples those are refers to CAAnimation and UIBezierPath. But I need to move my layer only from specified point to another on bezier path.

enter image description here

Any suggestions would be appreciated.

Thanks

share|improve this question
Why not just figure out the path segment and use that as the animation path – Paul.s Nov 17 '12 at 1:43

2 Answers

i'd been looking to do something like this and fount this tutorial,

http://nachbaur.com/blog/core-animation-part-4

hope this helps!

regards,

Jorge.

share|improve this answer
thanks for your answer, but thats not i'm looking for. I'm looking to move between two points in bezier path. Not complete path. – fyasar Nov 17 '12 at 0:09

If your bezier path is a circle or even a half circle, you could just skip the path and instead add the point to a larger square layer. Set the point to be a fixed distance from the center of that larger square layer. Then you can just rotate the larger layer on the z axis around the center whatever number of degrees you need it to move. Seems it would simplify things a bit, though I'm not sure exactly what else you need it to do.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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