Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的 Flipviewcontroller 实用程序应用程序中有一些设置,当我单击“完成”时,我希望能够刷新 MainViewController 上的屏幕。有没有办法做到这一点?
@Ravin 是正确的——你应该使用-viewWillAppear而不是-viewDidLoad. -viewDidLoad用于必须推迟到加载视图之后的初始化;您所说的是在视图出现时应该发生的更新。
-viewWillAppear
-viewDidLoad