首先导航,然后在 iPhone 应用程序中调用 viewDidLoad
我是新的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你不能。 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?