Hey, I'm trying to do this:
But it says dismissSplashScreen isn't declared? Where do I declare it?
The other part of the code below is right underneath (I also tried on top) of the viewDidAppear function.
Any idea's? Thanks.
Code:
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:(BOOL)animated];
[self performSelector:(dismissSplashScreen) withObject:nil afterDelay:3.0];
}
The other part of the code below is right underneath (I also tried on top) of the viewDidAppear function.
Code:
- (void)dismissSplashScreen {
self.modalTransitionStyle = UIModalTransitionStyleCrossDissolve;
[self dismissModalViewControllerAnimated:(BOOL)YES];
}
Any idea's? Thanks.