Is there a way, perhaps using RxBinding, to bind an Observable<String>
to a TextView
object such that its .text
property is kept up to date with the Observable
? Obviously, you could subscribe()
and manually update the text field, but a convenience method seems likely. I just can't find it, and the documentation hasn't yielded any answers for me.
A similar convenience method exists in RxSwift
(or rather RxCocoa
), in case that clarifies what I am asking for; it's called .bindTo()
there.