gpt4 book ai didi

ios - 以编程方式检测 View 何时即将更改。

转载 作者:行者123 更新时间:2023-12-01 18:47:01 24 4
gpt4 key购买 nike

我正在尝试实现 auto-save当用户更改 View 时,将通过网络发送包含修改数据的数据包的功能。问题是我还没有找到一种方法来确定用户何时离开 View ,例如:

method onChangeViewStart(param currentView, param nextView)
method onChangeViewFinish(param lastView, param currentView)

这存在吗?我的导航正在使用 UITabBarController

最佳答案

如上面评论中所述,我觉得您正在寻找 viewWillDisappear这是 UIViewController 中已内置的功能.

只需将以下代码添加到您的 View Controller 中,然后在注释下方添加任何自定义逻辑。

override func viewWillDisappear(animated: Bool) {
super.viewWillDisappear(animated)

// Your custom code here.
}

Apple Documentation on UIViewController.viewWillDisappear

关于ios - 以编程方式检测 View 何时即将更改。,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34758385/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com