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

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

    Received the same error after replacing my UI with a Storyboard, using XCode 4.6.3 and iOS 6.1

    Solved it by clearing out all of the code from didFinishLaucnhingWithOptions in the AppDelegate

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

提交回复
热议问题