Привет всем, мне нужно добавить 2 наблюдателей в мой UICollectionViewCell
Custom Class. Я реализовал двух наблюдателей таким образом
override init(frame: CGRect) {
super.init(frame: frame)
NotificationCenter.default.addObserver(self, selector: #selector(disablePreviousMinutes), name: NSNotification.Name(rawValue: "NotificationIdentifier"), object: nil)
NotificationCenter.default.addObserver(self, selector: #selector(enableMinute), name: NSNotification.Name(rawValue: "NotificationIdentifier2"), object: nil)
}
Теперь я хотел бы знать, как я могу удалить наблюдателей из моего UICollectionViewCell
класса
Я пытался вызвать override func willMove(toWindow newWindow: UIWindow?)
Но таким образом все вставленные функции повторяются для всех ячеек
Каков наилучший способ удалить наблюдателя из пользовательского класса UICollectionViewCell
?