RXswift textview change listener implementation swift
Problem:
I want to implement RXSwift textview change values with listener in iOS swift
Solution:
The below function will print the textview value
textview.rx.
.subscribe(onNext: {
print("changed text",$0)
})
Comments
Post a Comment