Top "Rx-swift" questions

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

RxSwift minimal Observable.create example

Currently I am trying to get RxSwift working. And I want to create a custom Observable. But I think I …

swift rx-swift
How to use BehaviorRelay as an alternate to Variable in RxSwift?

As of RxSwift4, Variable is moved to Deprecated.swift marking the possible deprecation of Variable in future. An alternate proposed …

rx-swift
ReactiveCocoa vs RxSwift - pros and cons?

So now with swift, the ReactiveCocoa people have rewritten it in version 3.0 for swift Also, there's been another project spun …

swift reactive-programming rx-swift reactive-cocoa-3
UITextField binding to ViewModel with RxSwift

I am willing to use RxSwift for MVVM binding between model values & view controllers. I wanted to follow this …

ios swift mvvm rx-swift
use RxSwift, driver and bind to

I'm the first time to ask a question,I'm learning RxSwift, how to use bind to and driver, what's the …

rx-swift
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
How do I create an observable of an array from an array of observables?

I have an array of Thing objects that I want to convert to ConvertedThing objects, using an asynchronous function that …

arrays swift rx-swift
Observe array in Swift 3 using RxSwift

To create an observable array using RxSwift in Swift 2, I use to do this: [1, 2, 3].toObservable().subscribeNext { print($0) } But in Swift 3, …

ios swift rx-swift reactivex