vote up 0 vote down star

I have a Core Animation running and want to pause it when a button is pressed. So there is a method -pauseAnimation. When the animation is paused, I want the animated view to stay in the state as it currently was while animating. i.e. if a view moves from top left to bottom right, and somewhere in the middle the animation is paused, the view should stay in the middle. Is there a way to do this?

as far as i can remember there is an setAnimationsEnabled=NO option, but that doesn't work when the animation runs, right?

flag

58% accept rate

1 Answer

vote up 1 vote down

You can do this by disabling animations and then setting the model layers' values to the presentation layers' values (for all properties that define your animation).

eg. layer.transform = layer.presentationLayer.transform;

Resuming the animation = re-enable animations and animate from current positions to the desired final positions (you might have to adjust curves, etc to get something acceptable).

link|flag
how would I set the model layers values to the presentation layers values? myView.transform = myview.layer.transform? – Thanks Jul 21 at 8:38
If you're working with UIViews, you'll need to call view.layer to get access to the layer, so view.layer.transform = view.layer.presentationLayer.transform. – Andrew Pouliot Jul 27 at 0:00

Your Answer

Get an OpenID
or

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