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

后端 未结 30 1310
野的像风
野的像风 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:39

    With my first view being MenuViewController I added:

    MenuViewController *menuViewController = [[MenuViewController alloc]init];
    self.window.rootViewController = menuViewController;
    

    on the App Delegate method:

    - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
    {
    }
    

    That worked.

提交回复
热议问题