In my iPhone application
I am doing certain animations.
like
[UIView beginAnimations:@"stalk" context:nil];
[UIView setAnimationDuration:1];
[UIView setAnimationBeginsFromCurrentState:YES];
self.frame=originalSelf;
[UIView commitAnimations];
After completion of this animation I want tocall some methods…
I know something abt block animations or
DidStopAnimation notification
How do I do that….
Thanks..
On iOS 4 and later, using blocks is recommended for this purpose: