我试图在我的自定义 UIViewController 上实现属性观察器,但我注意到它不适用于 isEditing 属性。

你们知道为什么吗?

class MasterViewController: UIViewController {

    // MARK: - Properties

    override var isEditing: Bool {
        didSet {
            print("VC is editing")
        }
    }
}

最佳答案

根据 isEditing 的文档



来自 setEditing(_:animated:)


TL; 博士

你会想要覆盖 setEditing(_:animated:)

关于swift - UIViewController isEditing - 属性观察器不起作用,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49801470/

10-14 03:54