0

我正在尝试向 UITextField 添加延迟,但出现以下错误:

Property 'text' requires that 'UITextField' inherit from 'UILabel'
Value of type 'Binder<String?>' has no member 'debounce'

这是我的实现:

   func bind() {
        (myTextField.rx.text.debounce(0.5, scheduler: MainScheduler.instance) as AnyObject)
            .map {
                if  $0 == ""{
                    return "Type your name bellow"
                }else {
                    return "Hello, \($0 ?? "")."
                }
        }
        .bind(to: myLbl.rx.text)
        .disposed(by: disposeBag)
    }

你们中的任何人都知道为什么我会收到此错误吗?

我会非常感谢你的帮助。

4

1 回答 1

0

myTextField.rx.text是一个ControlProperty<String?>,有时长链会使 Swift 编译器难以区分您要完成的工作。最好声明您的意图并将长链拆分为变量:

func bind() {
    // The way you wanted to do it
    let property: ControlProperty<String> = _textField.rx.text
        .orEmpty
        // Your map here

    property
        .debounce(.milliseconds(500), scheduler: MainScheduler.instance)
        .bind(to: _descriptionLabel.rx.text)
        .disposed(by: _disposeBag)

    // Driver is a bit better for UI
    let text: Driver<String> = _textField.rx.text
        .orEmpty
        // Insert your map here
        .asDriver()

    text
        .debounce(.milliseconds(500))
        .drive(_descriptionLabel.rx.text)
        .disposed(by: _disposeBag)
}

PS 使用 aDriver将为您节省一些 UI 输入并使其更清晰。

于 2019-12-02T10:48:48.587 回答