在 iPad 上查看将出现
我的问题是,我使用ios 4.1,当我通过然后在第一个视图中分配第二个视图时,viewWillAppear不会被调用
[self.view addSubView:self.mySecondView.view];
ViewDidLoad
..我只想调用ViewWillApear
在第二个视图上,因为想要动态执行任务。
是他们的替代方案...因为 InitWithNibName
方法在 alloc 和 init 发生时也会触发..我想在添加到该视图时触发一些方法。
谢谢
my question is that i use ios 4.1 and viewWillAppear is not call when i go via
[self.view addSubView:self.mySecondView.view];
then and in the first view i alloc second view on ViewDidLoad
.. i just want to call ViewWillApear
on Second View because want to do the task dynamic.
is their some thing alternative... because InitWithNibName
method also fire when alloc and init occur.. i want to fire some method when i add to that view.
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
之前讨论过同样的问题,只需浏览下面的链接即可。
iPhone viewWillAppear 未触发
viewDidLoad 被调用,viewWillAppear 未被调用,视图未出现在屏幕上
http://forums.macrumors.com/showthread.php?t=575530
这里是教程帖子
http://www.idev101.com/code/User_Interface/UINavigationController/ viewWillAppear.html
The same issue is discussed before,Just go through below SO links.
iPhone viewWillAppear not firing
viewDidLoad gets called, viewWillAppear does not get called, view does not appear on screen
http://forums.macrumors.com/showthread.php?t=575530
here is the tutorial post
http://www.idev101.com/code/User_Interface/UINavigationController/viewWillAppear.html