How to create a multistage UIImageView animation?

You need to add a call to set yourself as the animation delegate.

You need to add a call to set yourself as the animation delegate: UIView setAnimationDelegate:self; It would be a good idea to unset yourself as the delegate (set to nil) in the last animation block.

Thanks. I also had to the setAnimationDidStopSelector line to : UIView setAnimationDidStopSelector:@selector(secondAnim:finished:context:); – cannyboy Jun 15 '09 at 21:24.

The complete solution to your question is: 1) set the animation delegate 2) use the correct selector and method signature UIView beginAnimations:nil context:nil; UIView setAnimationDuration:.5; UIView setAnimationDelegate:self; //set delegate! UIView setAnimationDidStopSelector: @selector(secondAnim:finished:context:); -(void)secondAnim:(NSString *)animationID finished:(NSNumber *)finished context:(void *)context { //animation #2 }.

I cant really gove you an answer,but what I can give you is a way to a solution, that is you have to find the anglde that you relate to or peaks your interest. A good paper is one that people get drawn into because it reaches them ln some way.As for me WW11 to me, I think of the holocaust and the effect it had on the survivors, their families and those who stood by and did nothing until it was too late.

Related Questions