为什么我的 viewDidLoad 方法不执行?

发布于 2024-09-08 02:15:52 字数 187 浏览 8 评论 0原文

我有一个 iPhone 应用程序,带有一个标签栏控制器。在加载选项卡栏之前,我会呈现一个用于注册的模式视图。注册完成后,此视图将消失,并显示选项卡,并选择“新闻”选项卡。由于某种原因,即使正在显示新闻视图,新闻类的 viewDidLoad 方法也没有被调用。

我知道我可能错过了一些简单的东西,我是 iPhone 编程的菜鸟。任何帮助表示赞赏。

I have an iPhone app, with a tab bar controller. Before the tab bar is loaded, I present a modal view for registration. Once registration is completed this view is dismissed, and the tabs appear, with the "News" tab selected. For some reason, even though the News view is displaying, the viewDidLoad method of the News class is not being called.

I know I am probably missing something simple, I'm kind of a noob at iPhone programming. Any help is appreciated.

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

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

发布评论

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

评论(1

灼疼热情 2024-09-15 02:15:52

您是否将“新闻”视图设置为选项卡栏?例如:

[tabBarController setViewControllers:
                           [NSArray arrayWithObjects:newsController, nil]];

只是想确保你没有丢失东西:)

Did you set the 'News' view to the tabbar? eg:

[tabBarController setViewControllers:
                           [NSArray arrayWithObjects:newsController, nil]];

Just trying to make sure that you're not missing stuff :)

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