我想观察iOS键盘的高度。我如何使用RxSwift做到这一点?
答案 0 :(得分:3)
如果您只对键盘的高度感兴趣,可以观察UIKeyboardDidChangeFrame
次通知
let keyboardHeight = NotificationCenter.default.rx
.notification(NSNotification.Name.UIKeyboardDidChangeFrame)
.map { notification -> CGFloat in
(notification.userInfo?[UIKeyboardFrameEndUserInfoKey] as? NSValue)?.cgRectValue.height ?? 0
}
请注意,在这里,键盘的高度将保持"完整"即使它离开了屏幕。这些通知仅对由于键盘语言更改或显示/隐藏自动完成按钮而导致的帧更改感兴趣。
如果您想要在屏幕显示时将键盘的框架视为0,则可以将上述观察结果与UIKeyboardWillShow
和UIKeyboardHide
通知结合使用。< / p>
let keyboardOnScreenHeight = Observable.from([
NotificationCenter.default.rx.notification(NSNotification.Name.UIKeyboardWillShow)
.flatMap { _ in keyboardHeight }
NotificationCenter.default.rx.notification(NSNotification.Name.UIKeyboardWillHide)
.map { _ in 0 }
])
.merge()
由此,您将获得先前定义的keyboardHeight
在屏幕上发出的值,并在退出时获得0。
答案 1 :(得分:1)
以下是如何构建一个发出键盘高度的Observable
:https://gist.github.com/laurilehmijoki/193332408964ad53e1cc236387ec6e46