PushViewController 不工作

发布于 2024-12-02 11:33:09 字数 252 浏览 0 评论 0原文

我想创建一个基本的推送视图场景。我有以下代码,但它不起作用。什么也没发生。有人能告诉我为什么吗?

testController *screen2 = [[testController alloc] initWithNibName:nil bundle:nil];
[self.navigationController pushViewController:screen2 animated:YES];
[screen2 release];

i want to create a basic push view scenario. I have the following code but it does not work. Nothing happens. Could someone tell me why?

testController *screen2 = [[testController alloc] initWithNibName:nil bundle:nil];
[self.navigationController pushViewController:screen2 animated:YES];
[screen2 release];

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

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

发布评论

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

评论(1

汐鸠 2024-12-09 11:33:09

您应该尝试执行 NSLog 来查看 screen2 是否为零。有可能由于某种原因,它没有从相应的笔尖正确加载。顺便说一句,我强烈建议遵守类名大写的惯例。说到这里,你可能会调用 nib 文件 TestController.nib 吗? (这会导致问题。)

You should try to do an NSLog to see if screen2 is nil. Chances are it is not being appropriately loaded from a corresponding nib for some reason. As an aside, I'd highly recommend sticking to the convention of capitalizing class names. Speaking of which, did you maybe call the nib file TestController.nib? (That would cause the problem.)

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文