新しいファイルに新しいUIViewController
クラスを作成し、そのからUIViewController
に移行しようとしています。 Objective-C
では、対応するxibファイルと一緒に新しいファイルを作成し、そのファイルをメインのViewController.m
にインポートし、ビューのpresentViewController
メソッドを使用して新しいビューに移行します。スワイプでストーリーボードを使用せずにビューを作成して移行する
例:メインViewController.m
SecondViewController* secondView = [[SecondViewController alloc] initWithNibName:@"SecondViewControllerXib" bundle:nil];
[self presentViewController:secondView animated:YES completion:nil];
secondView = nil;
その後、私は好まないその私の周りに検索してきたが、私が遭遇したすべての例は、すべてのStoryboard
を使用している
[self dismissViewControllerAnimated:YES completion:nil];
を使用して、メインViewController.m
に戻ります使用する。迅速にStoryboard
を使用せずにこれを達成するにはどうすればよいですか?
おかげで、私はそれを自分自身overthinkingし、混乱していたと思います。 – RickyTheCoder