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

前端 未结 2 633
一整个雨季
一整个雨季 2020-12-12 00:11

I am using the facebook iOS SDK setup tutorial: https://developers.facebook.com/docs/mobile/ios/build/

After Step 4: Adding Log Out to your App,

I get a bla

2条回答
  •  南笙
    南笙 (楼主)
    2020-12-12 00:41

    Check that you have the following line in your application delegate's application:didFinishLaunchingWithOptions: method:

    self.window.rootViewController = self.viewController;
    

提交回复
热议问题