我需要在用户打字时指示一些延迟状态。我正在尝试使用 RxSwift:
_textField.rx.text.orEmpty.debounce(3, scheduler: MainScheduler.instance).distinctUntilChanged().subscribe({[weak self] _ in
self?.typeViewShould(hide: true)
}).addDisposableTo(disposeBag)
问题是 3 秒后,我想等待,块执行的次数与我输入的字符一样多,而不仅仅是一次具有最新值。我试图从 GitHub 示例搜索中重写代码,但它不起作用:
_ = _textField.rx.text.orEmpty.debounce(3, scheduler: MainScheduler.instance).distinctUntilChanged().flatMapLatest {[weak self] query -> Observable<[String]> in
self?._textField.text = nil
self?.typeViewShould(hide: true)
return .just([])
}.observeOn(MainScheduler.instance)
我究竟做错了什么?