hi,
how can i implement an NSArray in this method (instead of just defining each one of the objects).
code:
- (void) fadeOutShuffleAnimation
{
[UIView beginAnimations:nil context:nil];
[UIView setAnimationDuration: 0.8];
[UIView setAnimationDelegate:self];
juw1.alpha = 0.0;
juw2.alpha = 0.0;
juw3.alpha = 0.0;
juw4.alpha = 0.0;
...
[UIView commitAnimations];
}