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.text

                            .subscribe(onNext: {

                            print("changed text",$0)

                            })


Comments

Popular posts from this blog

Invalid bundle error while upload the app to the app Store

Saved Image in document directory and save path in coredata not able to fetch the image file iOS swift