首先导航,然后在 iPhone 应用程序中调用 viewDidLoad

发布于 2024-12-15 12:27:26 字数 374 浏览 1 评论 0原文

我是新的 iPhone 开发者。我创建了一个应用程序,在其中使用 pushViewController 在视图之间导航。但是当我调用 :

DetailViewController *dvController = [[DetailViewController alloc] init];
[self.navigationController pushViewController:dvController animated:YES];

时,就会调用 DetailViewController 的 viewDidLoad 方法。 然后我就可以在屏幕上导航了。

但我想先导航,然后调用 viewDidLoad 方法。 我该怎么做?

I am new iPhone developer. I have created an application in which I use pushViewController to navigate between views. But when I call :

DetailViewController *dvController = [[DetailViewController alloc] init];
[self.navigationController pushViewController:dvController animated:YES];

then the viewDidLoad method of DetailViewController is called.
And then I can navigate the screen.

But I want to navigate first and then the have the viewDidLoad method be called.
How can I do this ?

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

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

发布评论

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

评论(1

苄①跕圉湢 2024-12-22 12:27:26

你不能。 nib/xib 在控制器被推送到导航堆栈之前加载。你不能将 viewDidLoad 代码移至 viewDidAppear 或类似的代码吗?

You can't. The nib/xib is loaded before the controller is pushed onto the navigation stack. Can't you move the viewDidLoad code to viewDidAppear or something like that?

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