尝试连接任何插座时,第三级导航控制器崩溃

发布于 2024-11-29 09:37:22 字数 156 浏览 1 评论 0原文

我有一个表视图导航控制器,一旦选择了一个单元格,它就会加载到详细信息视图,然后加载到另一个导致子详细信息视图的按钮。每当我尝试向第三级导航视图添加任何内容时,它都会崩溃,无论是标签、图像还是任何内容,甚至只是 image.hidden=YES; 崩溃?有什么想法为什么吗?

I have a table view nav controller that once a cell is selected it loads to a details view and then another button that leads to a sub details view. Whenever i try add anything to the third level nav view it crashes, be it a label, image, anything, even just image.hidden=YES; crashes? any ideas why?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

寄居者 2024-12-06 09:37:22

试试这个

ThirdController *thirdController = [[ThirdController alloc] initWithNibName:@"ThirdController" bundle:nil];
[self.navigationController pushViewController:thirdController animated:YES];
[thirdController release];

try this

ThirdController *thirdController = [[ThirdController alloc] initWithNibName:@"ThirdController" bundle:nil];
[self.navigationController pushViewController:thirdController animated:YES];
[thirdController release];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文