RxSwift:将RX绑定添加到UITextField时出错:类型'Binder <String?>'的值没有成员'debounce'

时间:2019-12-01 22:41:16

标签: ios rx-swift rx-cocoa xcode11.2 swift5.2

我正在尝试将延迟添加到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)
    }

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

非常感谢您的帮助。

1 个答案:

答案 0 :(得分:0)

myTextField.rx.textControlProperty<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)
}

P.S。使用Driver将为您节省一些UI输入,并使输入更加清晰。