I need to synchronize a path animation on two different layers (one is used as a mask for another layer, the other shows a graphical element that follows the path, i.e. draws the mask). If I just set them up identically, they never quite do the same thing. Currently, I am using a CAKeyframeAnimation with a path (for the graphical element) and a CABasicAnimation, where I animate "strokeEnd" of the same path from 0.0 to 1.0 (for the mask).

I guess an animation group does not work here, since that would mean I apply the group to the mask layer, which would hide the graphical element.

link|improve this question

65% accept rate
feedback

1 Answer

up vote 4 down vote accepted

Have you set calculationMode = kCAAnimationPaced for the keyframe animation?

link|improve this answer
Nope, I had not. That actually did fix my problem. Thanks, Ole. Somehow you seem to have all the animation related answers :) – Joseph Tura Dec 12 '10 at 9:38
Glad I could help. I am working on a similar task at the moment so we likely hit the same stumbling blocks. – Ole Begemann Dec 12 '10 at 11:27
feedback

Your Answer

 
or
required, but never shown

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