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

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

    I had this same problem. Check your main.m. The last argument should be set to the name of the class that implements the UIApplicationDelegate protocol.

    retVal = UIApplicationMain(argc, argv, nil, @"AppDelegate");
    

提交回复
热议问题