如果键盘弹起的时候,获得焦点也就是becomeFirstResponder的输入框位置会被键盘挡住,那么系统会自动将输入框所在的整体布局向上移动。这种移动不一定是我们想要的,如果想要更精准的控制,就需要在键盘弹起之前主动移动输入框到键盘上方,这样系统就不会自动移动整体布局了。
键盘弹起前
键盘弹起后
keyboardWillShowNotification是键盘将要弹起的通知,在它里面处理就可以。
self.note1 = NotificationCenter.default.addObserver(forName: UIResponder.keyboardWillShowNotification, object: nil, queue: OperationQueue.main) { [unowned self] (note) in
self.keyboardH = self.getKeyboardHeight(note)
updateExpandHeight()
}
self.note2 = NotificationCenter.default.addObserver(forName: UIResponder.keyboardWillHideNotification, object: nil, queue: OperationQueue.main) { [unowned self] (note) in
updateExpandHeight()
}
private func getKeyboardHeight(_ noti: Notification) -> CGFloat {
var height: CGFloat = 271.0
if let dic = noti.userInfo {
let value = dic[UIResponder.keyboardFrameEndUserInfoKey] as! NSValue
height = value.cgRectValue.size.height
}
return height
}
private func updateExpandHeight() {
// 调整布局
...
// 需要在键盘出现前立刻刷新
self.layoutIfNeeded()
}
网友评论