Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am doing an implicit animation, and the following function gets called when it's done:

- (void)animationDidStop:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context;

Is there a similar function that will get called when an implicit animation begins?

share|improve this question

1 Answer

up vote 4 down vote accepted

You are probably looking for

- (void)animationWillStart:(NSString *)animationID context:(void *)context;
share|improve this answer
Yeah, I thought that's what it was, but it's not getting called for some reason :( – Andrew Johnson Aug 13 '09 at 8:09
Just had to set the delegate... this is the right answer. – Andrew Johnson Oct 13 '09 at 21:46

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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