在 FlipViewController 上运行 ViewDidLoad 方法
我的 Flipviewcontroller 实用程序应用程序中有一些设置,当我单击“完成”时,我希望能够刷新 MainViewController 上的屏幕。有办法做到这一点吗?
I have a few settings in my flipviewcontroller utility application and when I click "Done" I want to be able to refresh the screen on the MainViewController. Is there a way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
@Ravin 是正确的——您应该使用
-viewWillAppear
而不是-viewDidLoad
。-viewDidLoad
用于初始化,必须推迟到视图加载之后;您所说的是每当视图出现时就应该发生的更新。@Ravin is correct -- you should use
-viewWillAppear
rather than-viewDidLoad
.-viewDidLoad
is for initialization that has to be deferred until after the view is loaded; what you're talking about is an update that should happen whenever the view appears.