We have seven buttons, on clicking of anyone among them, i need to perform animations on remaining buttons "in sequence". At present am using the following code in for loop,but animation is done on all the buttons at once.
[UIView beginAnimations: @"Fade In" context:nil];
button.alpha = 0;
[UIView setAnimationDelay:0];
[button setTitle:@"helloworld" forState:UIControlStateNormal];
[UIView setAnimationDuration:0];
button.alpha = 1;
[UIView commitAnimations];