How to change RootViewController in AppDelegate From Other ViewController?

后端 未结 3 583
清酒与你
清酒与你 2021-02-07 11:41

This is didFinishLaunchingWithOptions Method in AppDelegate. Let me explain scenario, I have developed sideMenu like facebook in my app, but now I have to change the sideMenu li

3条回答
  •  迷失自我
    2021-02-07 12:32

    With Storyboard

    Inside another ViewController you can use this code:

    self.view.window.rootViewController = [self.view.window.rootViewController.storyboard   instantiateViewControllerWithIdentifier:@"**STORYBOARD ID**"];
    

    Inside AppDelegate:

    self.window.rootViewController = [self.window.rootViewController.storyboard instantiateViewControllerWithIdentifier:@"**STORYBOARD ID**"];
    

提交回复
热议问题