Stop CABasicAnimation at specific point

Good question! For this, it's helpful to know the Core Animation architecture.

If you check out the diagram in the Core Animation Programming Guide that describes the Core Animation Rendering Architecture, you can see that there's three trees.

You have the model tree. That's where you set the values of what you want to happen. Then there's the presentation tree. That's what is pretty much happening as far as the runtime is concerned. Then, finally is the render tree. That's what the user sees.

In your case, you want to query the values of the presentation tree.

It's easy to do. For the view that you have attached the animation, get the layer and for that layer, query the presentationLayer's values. For example:

CATransform3D myTransform = [(CALayer*)[self.view.layer presentationLayer] transform];

There's no way to "pause" an animation mid flow. All you can do is query the values, remove it, and then re-create it again from where you left off.

It's a bit of a pain!

Have a look at some of my other posts where I go into this in a bit more detail, e.g.

Restoring animation where it left off when app resumes from background

Don't forget also that when you add an animation to a view's layer, you aren't actually changing the underlying view's properties. So what happens? We'll you get weird effects where the animation stops and you see the view in it's original position.

That's where you need to use the CAAnimation delegates. Have a look at my answer to this post where I cover this:

CABasicAnimation rotate returns to original position


You need to set the rotation to the rotation of the presentationLayer and then remove the animation from the layer. You can read about the presentation layer in my blog post about Hit testing animating layers.

The code to set the final rotation would be something like:

self.view.layer.transform = [(CALayer*)[self.view.layer presentationLayer] transform];
[self.view.layer removeAnimationForKey:@"rotationAnimation"];