Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iOS - Changing root view controller with animation

I'm changing the root view controller by pressing a button which is hooked up to a custom segue to the view controller that I want to change to. The custom segue looks like:

- (void)perform{
    UIViewController *source = (UIViewController *)self.sourceViewController;
    source.view.window.rootViewController = self.destinationViewController;
}

But this just immediately changes the root view controller. I'd like the controller to fade on top of the old controller.

like image 571
user1778856 Avatar asked Apr 29 '14 07:04

user1778856


3 Answers

The common way to do that is:

    UIStoryboard *sb = [UIStoryboard storyboardWithName:@"YourSBName" bundle:nil];
    UIViewController *vc = [sb instantiateInitialViewController];// Or any VC with Id
    DictateITAppDelegate *appDelegate = [[UIApplication sharedApplication] delegate];
    appDelegate.window.rootViewController = vc; // PLEASE READ NOTE ABOUT THIS LINE
    [UIView transitionWithView:appDelegate.window
                      duration:INTERVAL_DURATION
                       options:UIViewAnimationOptionTransitionCrossDissolve
                    animations:^{ appDelegate.window.rootViewController = vc; }
                    completion:nil];

Now a few notes about:

appDelegate.window.rootViewController = vc; // PLEASE READ NOTE ABOUT THIS LINE

The new view controller, you instantiate will be presented in the default orientation i.e. portrait. So probably if you do that in landscape your new view controller will appear as portrait and then turns to landscape. This line fixed this issue for me.

like image 140
ilnar_al Avatar answered Nov 07 '22 11:11

ilnar_al


I think there are many answers for this already, but something like this should work:

[UIView transitionWithView:self.sourceViewController.view.window
                  duration:0.5
                   options:UIViewAnimationOptionTransitionCrossDissolve
                animations:^{
                    self.sourceViewController.view.window.rootViewController = self.destinationViewController;
                } completion:^(BOOL finished) {
                    // Code to run after animation
                }];
like image 3
Accatyyc Avatar answered Nov 07 '22 11:11

Accatyyc


I needed to translate this into Swift 3.0 for my current project. Here's a way to do that:

//Get the storyboard that contains the VC you want
let storyboard = UIStoryboard(name: "Main", bundle: nil)

//Get the VC you want to push onto the stack
//You can use storyboard.instantiateViewController(withIdentifier: "yourStoryboardId")
guard let vc = storyboard.instantiateInitialViewController() else { return }

//Get the current app delegate 
guard let appDel = UIApplication.shared.delegate as? AppDelegate else { return }

//Set the current root controller and add the animation with a
//UIView transition
appDel.window?.rootViewController = vc

UIView.transition(with: appDel.window!,
              duration: 0.25,
               options: .transitionCrossDissolve,
            animations: { appDel.window?.rootViewController = vc } ,
            completion: nil)
like image 2
Joe Spadafora Avatar answered Nov 07 '22 13:11

Joe Spadafora