假设我有一个推QRCodeScannerViewcontroller(vcB)的viewcontroller(vcA)。当(vcB)扫描某些内容时,它将推送ResultviewController(vcC)。


-将这3个视图连接到UInavigation控制器

-用户单击(vcC)上的后退按钮

我的问题是:

1)我如何知道(vcB)是否可见而不更改(vcB)上的代码? (vcB)是一个广告连播

2)我将把这段代码放在哪里?我只能访问(vcA)

我尝试在(vcA)上添加此代码,但没有任何反应

override func viewDidDisappear(_ animated: Bool) {

    if (vcB.isViewLoaded && (vcB.view.window != nil)){
        print("vcb did appear!")
    }

}

最佳答案

要知道导航堆栈中是否存在cvB类的实例,可以使用以下代码:

let result = self.navigationController?.viewControllers.filter({
    if let vcB = $0 as? UIViewController { // Replace UIViewController with your class, for example ViewControllerB
        return true
    }
    return false
})

if result.isEmpty {
    print("An instance of vcB's class hasn't been pused before")
} else {
    print("An instance of vcB's class has been pused before")
}

关于swift - 如何检测是否再次出现插入的ViewController?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/44801639/

10-11 19:45