如何在不同时间调用viewDidLoad?
我想问一个关于iPhone应用程序的问题。
在我的程序中,我创建了带有 4 个选项卡的 UITabBarController。 4个选项卡显示不同的信息并且有一定的联系。当我在选项卡 4 中执行某些操作时,它将更新选项卡 1 中显示的一些数据。但是,如果我在 viewDidLoad 函数中添加元素,页面是相同的。
我的问题是,如何在用户每次按下选项卡时加载数据?我需要将代码移动到某个地方吗?
I want to ask a question about the iPhone application.
In my program, I create the UITabBarController with 4 tabs. The 4 tabs display different information and have some connection. When I do something in the tab 4, it will update some data which display in tab 1. However, the page is the same if I add the element in the viewDidLoad function.
My problem is, how to load the data every time when the user press the tab? do I need to move the code to somewhere?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
[UIViewController viewWillAppear:] 正是您正在寻找的。
[UIViewController viewWillAppear:] is exactly what you're looking for.