Instantiating a View Controller programmatically with Storyboard from AppDelegate

前端 未结 4 939
天命终不由人
天命终不由人 2020-12-30 07:58

I\'m busy building an app - that when launched for the first time it asks the user to do two things:

  1. Select a Country
  2. Accept T&Cs
<
4条回答
  •  余生分开走
    2020-12-30 08:40

    You're expecting the self.window.rootViewController to be a UINavigationController but it's a UIViewController. This means that the outermost view controller in your storyboard is of the wrong type.

    A better way to obtain the UINavigationController (Which should work in this case) is to use the property self.navigationController on any UIViewController.

    From what I understand you want to present a view the first time the user runs to have the user pick some stuff. What you should then do is present a modal view controller, like this:

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    //isFirstRun is some boolean you use to determine if it's the first run
    if(isFirstRun){
        BBCounterySettingsViewController *controller = (BBCounterySettingsViewController *)[mainStoryboard instantiateViewControllerWithIdentifier: @"CountrySettings"];
        [self.window.rootViewController presentViewController: controller animated:YES completion:nil];
    }
    

提交回复
热议问题