私のView Controllerでは、ルートView Controllerをナビゲートすると、このコードで問題なく動作します。
[self.navigationController popToRootViewControllerAnimated:YES];
しかし、以下のコードでviewcontrollerへのナビゲーションをカスタマイズしようとすると、
ViewController2 *vc = [[[ViewController2 alloc] init]];
[self.navigationController popToViewController:vc animated:YES];
これにより、アプリケーションがクラッシュし、以下のエラーが表示されます:
terminate called throwing an exception.
それを短くするのを手伝ってください。