gpt4 book ai didi

ios - 在IDE中呈现ViewController黑屏或线程调试

转载 作者:行者123 更新时间:2023-11-29 04:00:28 26 4
gpt4 key购买 nike

我已经看到了大量关于这个问题的帖子 - 我已经尝试了所有这些解决方案,但它们都失败了。运行的构建,当我单击按钮时,它会转到线程调试器页面,我不知道发生了什么。

我需要从一个带有自己的 .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];
}

使用注释代码时会出现黑屏

最佳答案

FirstViewController *fvc = [[FirstViewController alloc] initWithNibName:nil bundle:nil];
[self presentViewController:fvc animated:YES completion:nil];

这里 initWithNibName:nil 会导致黑屏,因为它无法加载 Nib 。

关于ios - 在IDE中呈现ViewController黑屏或线程调试,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15923107/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com