Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/k06a/LaunchScreenViewController
iOS View Controller for loading default launch screen in app and maybe to add some animations to it
https://github.com/k06a/LaunchScreenViewController
Last synced: 1 day ago
JSON representation
iOS View Controller for loading default launch screen in app and maybe to add some animations to it
- Host: GitHub
- URL: https://github.com/k06a/LaunchScreenViewController
- Owner: k06a
- License: mit
- Created: 2014-11-19T15:29:23.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2021-10-27T19:47:39.000Z (about 3 years ago)
- Last Synced: 2024-10-29T19:42:14.515Z (15 days ago)
- Language: Objective-C
- Size: 1.41 MB
- Stars: 187
- Watchers: 14
- Forks: 16
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
LaunchScreenViewController
==========================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:
Installation
==========================```
pod 'LaunchScreenViewController'
```Usage
==========================1. Add hidden elements to `LaunchScreen.xib`
2. Create `LaunchScreenViewController` subclass
3. Add controller subclass to storyboard
4. Create modal segue and call it once manually in `viewWillAppear:````
- (void)viewWillAppear:(BOOL)animated
{
[super viewWillAppear:animated];
static dispatch_once_t onceToken;
dispatch_once(&onceToken, ^{
[self performSegueWithIdentifier:@"segue_screensaver" sender:nil];
});
}
```5. Add custom animations to your controller subclass
Contribute
==========================
You are welcome to fork, PR, create issues ...