モーダルビューからメインビューに戻るボタンを作成したい。
ビューコントローラは、ナビゲーションコントローラに組み込まれています。メニューボタンをクリックすると、SecondViewControllerに移動します。これを使用して正常に動作する戻るボタンがあります。
[self.navigationController popViewControllerAnimated:YES];
2ページ目のVCからメインビューコントローラーに戻りたい。
私が試してみました:
- (IBAction)goToRootView:(id)sender {
[self.presentingViewController dismissViewControllerAnimated:(NO) completion:nil];
[self.navigationController popViewControllerAnimated:YES];
}
と:
- (IBAction)goToRootView:(id)sender {
[self dismissViewControllerAnimated:(NO) completion:nil];
[self.navigationController popViewControllerAnimated:YES];
}
最初のVCは2番目のVCに戻り、最後の送信とlldbエラーが発生します。
Mantras Page Two VCからMainVCに移動するにはどうすればよいですか?
ご協力ありがとうございました!