この問題に関するスレッドが豊富にあることを確認しました。これらの解決策をすべて試しましたが、失敗しました。実行されたビルドは、ボタンをクリックするとスレッド デバッガー ページに移動し、何が起こっているのかわかりません。
独自の .xib を持つ新しいクラスから、FirstViewController がある MainStoryboard に移動する必要があります。
- (IBAction)backToHome:(id)sender {
/*
FirstViewController *fvc = [[FirstViewController alloc] initWithNibName:nil bundle:nil];
[self presentViewController:fvc animated:YES completion:nil];
*/
UIStoryboard *storyboard = [UIStoryboard storyboardWithName:@"MainStoryboard" bundle:nil];
FirstViewController *fvc = [storyboard instantiateViewControllerWithIdentifier:@"FirstViewController"];
[self presentViewController:fvc animated:YES completion:nil];
}
コメント付きのコードを使用すると、黒い画面になります