iOS Swift - User Input and Forms
What output is produced when this Swift code runs after the keyboard appears?
NotificationCenter.default.addObserver(self, selector: #selector(keyboardWillHide), name: UIResponder.keyboardWillHideNotification, object: nil)
@objc func keyboardWillHide(notification: Notification) {
print("Keyboard is hiding")
}