I have a method to fade in, then fade out a button label (shown below):
-(void)fade:(NSString *)text
{
NSLog(@"Starting Fade In for symbol %@",text);
[self.symbolButton setAlpha:0.0f];
[self.symbolButton setTitle:text forState:UIControlStateNormal];
[UIView animateWithDuration:2 animations:^{
[self.symbolButton setAlpha:1.0f];
} completion:^(BOOL finished) {
NSLog(@"Starting Fade Out for symbol %@",text);
[UIView animateWithDuration:2 animations:^{
[self.symbolButton setAlpha:0.0f];
} completion:nil];
}];
}
This works as intended. However, rather than a single string, I want to cycle through the contents of an array (eg. fade-in "A", fade-out "A", fade-in "B", fade-out "B".....).
In the above code, the completion block waits for the fade-in to finish before starting the fade-out (good). However, if I try and process an array using a for loop (modify the method to accept array and nest actions in a for loop that iterates the array), the loop cycles immediately rather than waiting for first character to complete.
Is there a way to use a completion block in the second animation action to pause processing of the loop - or am I going about this in the wrong way?
You may try this. I didn't test it but the idea should work