ストーリーボードに2つのビューコントローラーがあります。プログラムで1つ目から2つ目へのナビゲートに成功しました。
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
YourViewController *yourViewController = (YourViewController *)[storyboard instantiateViewControllerWithIdentifier:@"yourViewControllerID"];
[self.navigationController pushViewController:yourViewController animated:YES];
Interface Builderを使用せずに、 custom
Segueを使用して他のページに移動したい。pushViewController
これは、InterfaceBuilderで簡単に使用できるカスタムSegueです。
@interface LeftToRightSegue : UIStoryboardSegue
プログラムでやってみませんか?