ビュー コントローラ スタックの 2 レベルに戻りたいと思います。Show、Show、Present Modally の 3 つのセグエがあります。使用中のナビゲーションコントローラーがあります。4 番目のビューから 2 番目のビューに戻りたいと思います。使ってみました
self.presentingViewController?.presentingViewController?.navigationController?.popViewControllerAnimated(false);
と
self.presentingViewController?.presentingViewController?.dismissViewControllerAnimated(false, completion: nil);
2 番目のものは、2 番目と 3 番目のセグエが「Present Modally」の場合にのみ機能します。それらを却下とポップで動作させるにはどうすればよいですか?