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

前端 未结 3 914
鱼传尺愫
鱼传尺愫 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:17

    here i got the solution by checking if navigationController is nil or not:-

    if (self.navigationController== nil)
    {
        self.navigationController = [[BufferedNavigationController alloc] initWithRootViewController:self.firstViewController];
    }
    else
    {
        [self.navigationController setViewControllers:@[self.firstViewController] animated:NO];
    }
    

提交回复
热议问题