每当显示视图时,UIViewController 中肯定会调用什么函数?
每当在iPhone应用程序开发中显示视图时,包括在NavigationViewController中点击“最后一个视图”按钮之后,UIViewController中肯定会调用什么函数?
我使用 NavigationViewController 获取了一些与视图不同步的信息。我想知道是否可以放置一个函数调用来刷新视图生命周期函数中的数据,该函数将被称为视图显示的所有内容。
What function is definitely to be called in UIViewController whenever the view is shown in iPhone application development, including after hitting the "last view" button in a NavigationViewController?
I am getting some unsynchronized information with views using NavigationViewController. I am wondering if I can place a function call to refresh the data in the view life-cycle function that is to be called everything the view shows up.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
- (void)viewWillAppear:(BOOL)animated;
可能适合您的需要。- (void)viewWillAppear:(BOOL)animated;
may fit your need.