ScrollView did not move up when click textfield inside tableView
问题 I tried this code : in viewWillAppear : NotificationCenter.default.addObserver(self, selector: #selector(keyboardWillDisappear), name: Notification.Name.UIKeyboardWillHide, object: nil) NotificationCenter.default.addObserver(self, selector: #selector(keyboardWillAppear), name: NSNotification.Name.UIKeyboardWillShow, object: nil) and : @objc func keyboardWillAppear(notification:NSNotification) { print("keyboard appear") var info = notification.userInfo let keyBoardSize = info!