views:

141

answers:

1

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?

+4  A: 

You are probably looking for

- (void)animationWillStart:(NSString *)animationID context:(void *)context;
RaYell
Yeah, I thought that's what it was, but it's not getting called for some reason :(
Andrew Johnson
Just had to set the delegate... this is the right answer.
Andrew Johnson