I am currently working on a project that involves a fade-in-out slideshow at the home screen. I tried using NSTimer to fade-in-out between 2 UIImageViews every 4 secs. But turned out everything inside the timer selector was working except the Animation. Here's my code segment:
- (void)viewDidLoad{
[super viewDidLoad];
imgArray = [[NSArray arrayWithObjects:
[UIImage imageNamed:@"10.jpg"],
[UIImage imageNamed:@"20.jpg"],
[UIImage imageNamed:@"30.jpg"],
[UIImage imageNamed:@"40.jpg"],
[UIImage imageNamed:@"42.jpg"], nil] retain];
timer = [[NSTimer scheduledTimerWithTimeInterval:4.0 target:self selector:@selector(updatePhoto) userInfo:nil repeats:YES] retain];
imageView.image = [imgArray objectAtIndex:0];
imageView.alpha = 0.0;
[UIView beginAnimations:@"Fade In" context:nil];
[UIView setAnimationDuration:1.0];
[UIView setAnimationDelegate:self];
imageView.alpha = 1.0;
[UIView commitAnimations];
}
-(void)updatePhoto{
imageView.image = [imgArray objectAtIndex:count];
imageView.alpha = 1.0;
count = count + 1;
if(count > 4) count = 0;
imageView2.image = [imgArray objectAtIndex:count];
imageView2.alpha = 0.0;
[UIView beginAnimations:@"Fade In" context:nil];
[UIView setAnimationDuration:1.0];
imageView.alpha = 0.0;
imageView2.alpha = 1.0;
[UIView commitAnimations];
}
However, when I was coming back from another view (e.g. from another tabbed views), the animation came back perfectly. And the animation went off if I change orientation of the screen too. What's the problem? Do I missed anything?