我已经看到了关于这个问题的大量线程 - 我已经尝试了所有这些解决方案,但它们都失败了。运行的构建,当我单击按钮时,它转到线程调试器页面,我不知道发生了什么。
我需要从具有自己的 .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];
}
使用注释代码时,它会进入黑屏