Top "Rx-swift" questions

RxSwift's intention is to enable easy composition of asynchronous operations and event/data streams.

How to bind rx_tap (UIButton) to ViewModel?

I have authorization controller with 2 UITextField properties and 1 UIButton. I want to bind my View to ViewModel but don't know …

ios swift rx-swift
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
Two way binding in RxSwift

I read the two way binding operator in sample code of RxSwift. func <-> <T>(property: …

ios swift functional-programming reactive-cocoa rx-swift
RxSwift: Use Zip with different type observables

I'm using RxSwift 2.0.0-beta How can I combine 2 observables of different types in a zip like manner? // This works [just(1), …

swift rx-swift
RxSwift merge different kind of Observables

How should I merge 2 different types of Observables in RxSwift? For example: var a: Observable<Int> var b: …

swift frp rx-swift
Confusion about flatMapLatest in RxSwift

I learn the sample code in RxSwift. In the file GithubSignupViewModel1.swift, the definition of validatedUsername is: validatedUsername = input.username //…

swift functional-programming reactive-cocoa rx-swift
'[weak self]' in RXSwift closures

Do i need to use [weak self] within RXSwift subscribeNext closures? I have the code: searchController.searchBar.rx_text.throttle(0.2, …

swift closures rx-swift
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
RxSwift Using Variables Correctly

I am trying to convert a project to use RxSwift and MVVM. I have a service that syncs a list …

swift mvvm architecture rx-swift
RxSwift: enable/disable button based on textfields are not empty

I have to enable a button based on the characters count on two textfields using RxSwift @IBOutlet weak var userTextField: …

swift rx-swift