RxCocoa provide subscribe for UITextField and UITextView text change:
UITextField().rx.text.orEmpty.changed
.subscribe { text in
print(text)
}
.disposed(by: disposeBag)
UITextView().rx.text.changed.subscribe { t in
print(t)
}.disposed(by: disposeBag)
But no convenience for UILabel:
UILabel().rx.text.subscribe ...
Why rxcocoa designed for this?