在我的视图控制器中,如果我通过根视图控制器导航,它可以通过这段代码正常工作,
[self.navigationController popToRootViewControllerAnimated:YES];
但是当我尝试通过下面的代码自定义导航到视图控制器时,
ViewController2 *vc = [[[ViewController2 alloc] init]];
[self.navigationController popToViewController:vc animated:YES];
这样我的应用程序崩溃并显示以下错误:
terminate called throwing an exception.
帮我把它删掉。