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?