I was trying to implement property observers on my custom UIViewController but I noticed it was not working with the isEditing property.
Do you guys have an idea why?
class MasterViewController: UIViewController {
// MARK: - Properties
override var isEditing: Bool {
didSet {
print("VC is editing")
}
}
}