I am trying to rotate a CALayer to a specific angle however, once the animation is done, the layer jumps back to its original position. How would I rotate the layer properly so that it stays at its final destination?

Here is the code that I am using

CABasicAnimation *rotationAnimation =[CABasicAnimation animationWithKeyPath:@"transform.rotation.z"]; //Rotate about z-axis
[rotationAnimation setFromValue:[NSNumber numberWithFloat:fromDegree]];
[rotationAnimation setToValue:[NSNumber numberWithFloat:toDegree]];
[rotationAnimation setDuration:0.2];
[rotationAnimation setRemovedOnCompletion:YES];
[rotationAnimation setFillMode:kCAFillModeForwards];

Any suggestions? Thank you.

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Ok I fixed it by setting removeOnCompletion to NO.

[rotationAnimation setRemovedOnCompletion:NO];
link|improve this answer
feedback

You're adding an animation, but you aren't modifying the actual underlying property. After you create the animation, just set the layer's transform property to contain the same final result.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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