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.

As I'm trying to override implicit animation on the position property, the layer quickly flashes to the destination position and then starts my explicit animation:

CAKeyframeAnimation* animation = [CAKeyframeAnimation animation];
animation.path = path; // some CGPath
animation.duration = 1.0;

[newTopLayer setPosition:CGPointMake(x, y)]; // Setting final values for stickness
[newTopLayer addAnimation:animation forKey:@"position"];

It seem that the position key doesn't get overriden. Why? I tried it with CATransaction, but still no luck.

Update
Further investigations had shown, that the newTopLayer is not implicitly animated anyway. For info: it's backed by an UIView.

share|improve this question

2 Answers

Instead of using setPosition on the layer you should be using either setValues or setPath (which you are using) on the keyFrameAnimation. If you remove the line that sets the position the animations should work.

To make the layer remain in its end position you should set removedOnCompletion to NO on the animation and set the fillMode to kCAFillModeForwards.

share|improve this answer
I know about removedOnCompletion, but I need the actual layer (not visual only) to be at that position. Yeah, I tried setPosition, but it has the same effect. What do you mean by setPath? – CocoaPriest May 1 '12 at 10:40
[animation setPath:somePath]; is the same thing as animation.path = somePath;. On line 2 you are setting the path (and thus the values of the keyframe animation). This is what gets animated. Then on line 5 (counting the empty line) you are setting the position of the newTopLayer and thus changing the position right before you begin you animation (on the line below) by adding the animation to newTopLayer – David Rönnqvist May 1 '12 at 10:43
yeah, that's the way Apple does it - it should override the implicit animation. By setPostion I'm just setting the last point of the actual path. – CocoaPriest May 1 '12 at 10:52
please see update – CocoaPriest May 1 '12 at 10:52
Have you looked at the fillMode of the animation. Setting it to kCAFillModeBackwards (or kCAFillModeBoth) to get the correct behavior in the beginning of the animation? – David Rönnqvist May 1 '12 at 10:54
show 1 more comment
up vote 0 down vote accepted

OK, it's that simple: if a CALayer is backed by UIView, then all implicit animations are disabled. If you need an implicit animation, make a sub-layer to a UIView's layer.

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.