Observing UITextField.editing with RxSwift

前端 未结 3 831
别那么骄傲
别那么骄傲 2021-02-04 00:13

I want to observe the property UITextfield.editing. I\'m using this code:

self.money.rx_observe(Bool.self, \"editing\").subscribeNext { (value) in
          


        
3条回答
  •  离开以前
    2021-02-04 00:53

    Don't observe the editing property, because it's not just a stored property. It's defined as:

    public var editing: Bool { get }
    

    So you don't know how UIKit is actually getting that value.

    Instead, use rx.controlEvent and specify the control events you're interested in, like so:

    textField.rx.controlEvent([.editingDidBegin, .editingDidEnd])
        .asObservable()
        .subscribe(onNext: { _ in
            print("editing state changed")
        })
        .disposed(by: disposeBag)
    

提交回复
热议问题