Hello, I have a block of animation code and I need to know how to fade between each image. this is my code:
- (void) viewWillAppear

BOOL)animated{
[super viewWillAppear:animated];
[self performSelector:@selector(startAnimation) withObject:nil afterDelay:0];
}
- (void) startAnimation{
//self.view.backgroundColor = [UIColor initWithPatternImage:];
ringView.animationImages = [NSArray arrayWithObjects:
[UIImage imageNamed:@"Bear-Background.jpg"],
[UIImage imageNamed:@"Lion-Background.jpg"],
[UIImage imageNamed:@"Donkey-Background.jpg"],
[UIImage imageNamed:@"Goat-Background.jpg"],
[UIImage imageNamed:@"F18-Background.jpg"],
[UIImage imageNamed:@"Jet-Airplane-Background.jpg"],
[UIImage imageNamed:@"Car Background.png"],
[UIImage imageNamed:@"FireTruck Background.png"],nil];
ringView.animationRepeatCount = 0;
[ringView setAnimationDuration:12];
[ringView startAnimating];
}