美文网首页
RXSwift 键盘监听 好用

RXSwift 键盘监听 好用

作者: 茗记西岭雪 | 来源:发表于2020-11-17 16:56 被阅读0次
            //监听键盘弹出通知
            _ = NotificationCenter.default.rx
                .notification(UIResponder.keyboardWillShowNotification)
                .take(until: self.rx.deallocated) //页面销毁自动移除通知监听
                .subscribe(onNext: { _ in
                    print("键盘出现了")
    
                })
             
            //监听键盘隐藏通知
            _ = NotificationCenter.default.rx
                .notification(UIResponder.keyboardWillHideNotification)
                .take(until: self.rx.deallocated) //页面销毁自动移除通知监听
                .subscribe(onNext: { _ in
                    print("键盘消失了")
    
                })
    

    相关文章

      网友评论

          本文标题:RXSwift 键盘监听 好用

          本文链接:https://www.haomeiwen.com/subject/ulxfiktx.html