A single View Controller that mimics the startup animation of the AskKing Quizz app
Create and show the View
self.viewController = [[JTOpenDoorViewController alloc] initWithViewController:self.targetController];
self.viewController.delegate = self;
self.window.rootViewController = self.viewController;
Delegate methods
#pragma mark - LeveyPopListView delegates
- (void)didFinishAnimation
At the end of the animation, if you registered as a delegate, you get the chance to replace the AppDelegate RootViewController with your targetedViewController as follows :
- (void)didFinishAnimation
{
self.window.rootViewController = self.targetedViewController;
}