Assertion failure in -[UIApplication _runWithMainScene:transitionContext:completion:],

前端 未结 3 912
鱼传尺愫
鱼传尺愫 2021-01-04 14:28

I am getting the following error in iOS9 only.

Here is my code:-

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDi         


        
3条回答
  •  北海茫月
    2021-01-04 15:00

    I had to remove this line from application didFinishLaunchingWithOptions:

    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    

    And that fixed it for me.

提交回复
热议问题