I'm experimenting with CAAnimation and like many new comers doing the CAAnimation; upon completion, the layer is reverted back to its original state.

The question on how to resolve this have asked few times here, and the answer is to add the following code to your CAAnimation.

animation.removedOnCompletion = NO;

While this works, but according to Apple's WWDC video discussing CAAnimation, the recommended solution would be:

// animating opacity
layer.opacity = newOpacityValue;
[layer addAnimation:animation forKey:@"opacity"];

So I'm interested to know what is the main difference between this two and when to use them?

link|improve this question
@Till I meant addAnimation:animation, corrected the source code. – mfu Feb 17 at 16:06
feedback

2 Answers

up vote 3 down vote accepted

Explicit animations do not actually modify the attributes of a CALayer.

They just modify the presentationLayer, this is what you actually see. When the animation is finished you will see the CALayer exactly the same as it was before the animation.

By setting the value like this

// animating opacity
layer.opacity = newOpacityValue;
[layer addAnimation:animation forKey:@"opacity"];

you make sure the animated values are stored in the model, so your changes will live on even when the animation is removed from the layer.

Using removedOnCompletion = YES is not a persistent solution. Whenever you remove animations from a layer it will restore to is old state.

link|improve this answer
feedback

You don't need the "removedOnCompletion" flag.

What you need is to set the opacity to the new value OUTSIDE the animation as well - as your second example.

using "removedOnCompletion" will not release your animation object - blowing up your memory if you have a lot of animations.

CABasicAnimation *animation=[CABasicAnimation animationWithKeyPath:@"opacity"];
animation.fromValue=[NSNumber numberWithFloat:0];
animation.toValue=[NSNumber numberWithFloat:1];

layer.opacity=1; // this line will make sure the opacity will stay 1 when the animation is completed
[layer addAnimation:animation forKey:@"opacity"];
link|improve this answer
Now that makes sense, thanks for the answer! – mfu Feb 17 at 16:16
feedback

Your Answer

 
or
required, but never shown

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