Top "Rx-cocoa" questions

Observing UITextField.editing with RxSwift

I want to observe the property UITextfield.editing. I'm using this code: self.money.rx_observe(Bool.self, "editing").subscribeNext { (…

ios swift rx-swift reactivex rx-cocoa
RxSwift: How to add gesture to UILabel?

I have a label with isUserInteractionEnabled set to true. Now, I need to add UITapGestureRecognizer for the label. Is there …

ios swift rx-swift rx-cocoa
RxSwift modify tableview cell on select

I have a table view in my app. I generated the datasource for this table using following code struct ContactNameNumberBlockStatus { …

ios rx-swift rx-cocoa
issue with having rx.tap for UIButton in UICollectionViewCell - RxSwift 3

I am subscribing 2 times for 1 UIButton : First subscription, for updating UI on every click Second subscription, for updating the values …

ios swift3 reactive-programming rx-swift rx-cocoa
Reload Tableview using RxSwift

I am using RxSwift for tableview. I need to reload my table each time after getting data from api but …

ios swift rx-swift rx-cocoa
RxSwift double mapping in tableView.rx.itemSelected

I want to get object from tableView.rx.itemSelected and after process it. This method return IndexPath, so I can …

ios uitableview rx-swift rx-cocoa
TabelView Delegate methods using RxSwift

I am using RxSwift for TableView.I need to calculate height of dynamic cells previously I did it in WillDisplayCell …

ios swift3 rx-swift rx-cocoa