在 FlipViewController 上运行 ViewDidLoad 方法

发布于 2024-11-02 08:03:56 字数 96 浏览 5 评论 0原文

我的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

深爱成瘾 2024-11-09 08:03:56

@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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文