I want to observe the property UITextfield.editing. I'm using this code:
self.money.rx_observe(Bool.self, "editing").subscribeNext { (value) in
    print("")
}.addDisposableTo(disposeBag)
But in the process of running, it's only performed once. How do I solve this,please
 
     
     
     
     
    