To stop an animation what I did is to invoke a new UIView animation with the parameter: UIViewAnimationOptionBeginFromCurrentState so it would override the previous animation.
So I had one method to start animations from value X to value Y. An another method to interrupt the first animation. This second method was called whenever I got the button "Pause" tapped.
When I wanted to resume animation I would just call again the start animations method with the new X and Y values from the state that the object was left on.
Code to animate my UIImageView object in block format:
[UIView animateWithDuration: 5
delay: 0.0
options: UIViewAnimationOptionCurveLinear
animations: ^{
self.center = destinationPosition;
}
completion:nil];
Here is the stop/interrupting code:
UIImageView *currentPosition = [[UIImageView alloc] initWithFrame:[[self.layer presentationLayer] frame]];
destinationPosition.x = currentPosition.center.x;
destinationPosition.y = currentPosition.center.y;
[UIView animateWithDuration: 0.1
delay: 0.0
options: UIViewAnimationOptionCurveLinear | UIViewAnimationOptionBeginFromCurrentState
animations: ^{
self.center = destinationPosition;
} completion:nil];
In this code I used the layer presentation method to know the last value the object had during the animation so I could start animating back from that point as the user resumed gameplay. This is because the object seemed to store the projected destination value and I had to update it with the 'at the moment' value.
Note that the stop animation code has only 0.1 for duration. So its like the new animation overwriting the initial animation from the state it was found (UIViewAnimationOptionBeginFromCurrentState). The value is very short so it just happens to 'stop' the animation at the place where it was.
I don't know if this is the best way though, but it worked fine for me.