TestsTested | ✗ |
LangLanguage | Obj-CObjective C |
License | MIT |
ReleasedLast Release | Mar 2015 |
Maintained by Anton Bukov.
iOS View Controller for loading default launch screen in app and maybe to add some animations to it
This library will help you to build launch screens like this for example:
pod 'LaunchScreenViewController'
LaunchScreen.xib
LaunchScreenViewController
subclassCreate modal segue and call it once manually in viewWillAppear:
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
if (!self.screensaverLaunched) {
self.screensaverLaunched = YES;
[self performSegueWithIdentifier:@"segue_screensaver" sender:nil];
}
}
Add custom animations to your controller subclass
You are welcome to fork, PR, create issues ...