XCode 4.5.1, Application windows are expected to have a root view controller at the end of application launch

前端 未结 1 553
孤独总比滥情好
孤独总比滥情好 2021-01-07 07:56

I\'ve upgraded my XCode to 4.5.1 in order to debug in my new iPad with IOS 6.0.1. After that I get this error on console after compili

相关标签:
1条回答
  • 2021-01-07 08:09

    Go to AppDelegate class and add:

    self.window.rootViewController = self.viewController;
    
    0 讨论(0)
提交回复
热议问题