Applications are expected to have a root view controller at the end of application launch

后端 未结 30 1307
野的像风
野的像风 2020-11-22 06:42

I get the following error in my console:

Applications are expected to have a root view controller at the end of application launch

30条回答
  •  旧巷少年郎
    2020-11-22 07:38

    I came across the same issue but I was using storyboard

    Assigning my storyboard InitialViewController to my window's rootViewController.

    In

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
    ...
    UIStoryboard *stb = [UIStoryboard storyboardWithName:@"myStoryboard" bundle:nil];
    self.window.rootViewController = [stb instantiateInitialViewController];
    return YES;
    }
    

    and this solved the issue.

提交回复
热议问题