vote up 4 vote down star
1

Is it possible to cancel a UIView animation while it is in progress? Or would I have to drop to the CA level?

i.e. I've done something like this (maybe setting an end animation action too):

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationDuration:duration];
[UIView setAnimationCurve: UIViewAnimationCurveLinear];
// other animation properties

// set view properties

[UIView commitAnimations];

But before the animation completes and I get the animation ended event, I want to cancel it (cut it short). Is this possible? Googling around finds a few people asking the same question with no answers - and one or two people speculating that it can't be done.

flag

64% accept rate
Do you mean pausing the animation in the middle and leaving it there? Or going back to where it was at the start? – Chris Lundie Feb 17 at 0:00
Either leaving it exactly where it is, mid-animation (in practice I'll be starting another animation straight after anyway), or jump straight to the end point. I'd imagine the first is more natural, but either works for me in this case. – Phil Nash Feb 17 at 10:39
@Chris Hanson: I appreciate your edits but wonder what your rationale is for removing the iPhone tag. It may be implied by cocoa-touch, but I for one have a tag filter on iPhone and would miss this in that case. – Phil Nash Feb 17 at 10:43
@Boot To The Head (again): your question, and my own response to it, prompted me to test in isolation a bit more and I discovered if you start a new animation before the first one has finished it does jump to the end point before starting the new one. – Phil Nash Feb 17 at 11:18
- this meets my immediate needs (and suggests I have some other bug in my real code), but I'm going to leave this question open as I know others have been asking for the same. – Phil Nash Feb 17 at 11:19
show 1 more comment

2 Answers

vote up 5 vote down check

The way I do it is to create a new animation to your end point. Set a very short duration and make sure you use the +setAnimationBeginsFromCurrentState: method to start from the current state. When you set it to YES, the current animation is cut short. Looks something like this:

[UIView beginAnimations:nil context:NULL];
[UIView setAnimationBeginsFromCurrentState:YES];
[UIView setAnimationDuration:0.1];
[UIView setAnimationCurve: UIViewAnimationCurveLinear];
// other animation properties

// set view properties

[UIView commitAnimations];
link|flag
Thanks Stephen. Actually if you read the comments under my question this is exactly what I did do in the end - but since you've given a good, clear, account of it here I'm marking it as accepted – Phil Nash May 9 at 9:06
vote up 0 vote down

I have the same problem; the APIs don't have anything to cancel some specific animation. The

+ (void)setAnimationsEnabled:(BOOL)enabled

disables ALL animations, and thus does not work for me. There's two solutions:

1) make your animated object a subview. Then, when you want to cancel the animations for that view, remove the view or hide it. Very simple, but you need to recreate the subview without animations if you need to keep it in view.

2) repeat the anim only one, and make a delegate selector to restart the anim if needed, like this:

-(void) startAnimation {
NSLog(@"startAnim alpha:%f", self.alpha);
[self setAlpha:1.0];
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationRepeatCount:1];
[UIView setAnimationRepeatAutoreverses:YES];
[UIView setAnimationDelegate:self];
[UIView setAnimationDidStopSelector:@selector(pulseAnimationDidStop:finished:context:)];
[self setAlpha:0.1];
[UIView commitAnimations];
}

- (void)pulseAnimationDidStop:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context {
if(hasFocus) {
	[self startAnimation];
} else {
	self.alpha = 1.0;
}
}

-(void) setHasFocus:(BOOL)_hasFocus {
hasFocus = _hasFocus;
if(hasFocus) {
	[self startAnimation];
}
}

Problem with 2) is that there's always delay stopping the anim as it finishes the current animation cycle.

Hope this helps.

link|flag

Your Answer

Get an OpenID
or

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