Quote:
Originally Posted by Peeks
Another way is to have your first view present the exact same picture in a modalview e.g.
SplashPageViewController *modalViewController = [[SplashPageViewController alloc] init];
[modalViewController autorelease];
[self presentModalViewController:modalViewController animated:NO];
[self performSelector:@selector(hideSplash) withObject:nil afterDelay:1.0];
this way you can make use animations.
|
Oh nice!!! Thank you very much!