Skip to content

Instantly share code, notes, and snippets.

@projectxcappe
Created July 15, 2011 16:26
Show Gist options
  • Save projectxcappe/1085019 to your computer and use it in GitHub Desktop.
Save projectxcappe/1085019 to your computer and use it in GitHub Desktop.
splash screen
-(void)showSplash {
UIViewController *modalViewController = [[UIViewController alloc] init];
modalViewController.view = modelView;
[self presentModalViewController:modalViewController animated:NO];
[self performSelector:@selector(hideSplash) withObject:nil afterDelay:1.0];
}
-(void)hideSplash{
[[self modalViewController] dismissModalViewControllerAnimated:YES];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment