How can I remove keyboard notification?
I put observer on keyboard open and close.
I change the view size depend on keyboard is open or close.
Try this to remove keyboard open show observers,
NotificationCenter.default.removeObserver(self, name: NSNotification.Name.UIKeyboardWillShow, object: nil)
NotificationCenter.default.removeObserver(self, name: NSNotification.Name.UIKeyboardWillHide, object: nil)
you should remove observers either in deinit
Or viewDidDisappear
as per your requirement.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With