gpt4 book ai didi

ios - 如何判断 ViewController View 是否可见?

转载 作者:塔克拉玛干 更新时间:2023-11-02 23:01:17 27 4
gpt4 key购买 nike

我有一个tabBar 应用程序,有很多 View 。有没有办法知道特定的 UIViewController 当前是否在 UIViewController 中可见? (寻找属性)

最佳答案

var onScreen: Bool = false

override func viewWillAppear(animated: Bool) {
super.viewWillAppear(animated: animated)
onScreen = true
}

override func viewWillDisappear(animated: Bool) {
super.viewWillDisappear(animated: animated)
onScreen = false
}

然后您可以访问您的 viewControllerInstance.onScreen 属性。

关于ios - 如何判断 ViewController View 是否可见?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36495490/

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