I have this code for my animation:
facebookImage.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"Animation01.png"],
[UIImage imageNamed:@"Animation02.png"],
[UIImage imageNamed:@"Animation03.png"],
[UIImage imageNamed:@"Animation04.png"],
[UIImage imageNamed:@"Animation05.png"],
nil];
facebookImage.animationDuration = 1.3;
facebookImage.animationRepeatCount = 1;
[facebookImage startAnimating];
How do I use delegate callback (or something else) for doing something after this animation is complete?
I can't do this :
[UIView setAnimationDelegate:self];
because I don't have this option in UIImageview
thanks :)