Top "Rx-swift" questions

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

How to handle "Done" return key press event in rxSwift?

While exploring RxSwift I found just textField.rx_text.asObservable() property, that fires event every keyboard button is hit. But …

swift2 reactive-programming rx-swift
Emit an event manually in RxSwift

I'm a newbie in RxSwift and need a very basic help. Assump that I have an Observable and subscribe it …

ios swift reactive-cocoa rx-swift
Proper way to dispose a one-off observable in RxSwift

I have an observable that I only want to kick off once. The docs say: Using dispose bags or takeUntil …

ios swift rx-swift
RxSwift map and flatMap difference

I can't understand the difference between map and flatMap In RxSwift. In the RxSwift playground examples and the books, flatMap …

swift rx-swift
Proper usage of RxSwift to chain requests, flatMap or something else?

First of all, I'm new to rxswift so I guess the answer is obvious however at the moment I can't …

ios swift rx-swift
How do you get a signal every time a UITextField text property changes in RxSwift

How do you get a signal from programmatically made changes to UITextField text property? By using rx.text only reports …

ios swift rx-swift
Swift Struct Memory Leak

We're trying to use Swift structs where we can. We are also using RxSwift which has methods which take closures. …

swift memory-leaks rx-swift
RxSwift - withLatestFrom combining values from both observables

I want to achieve result like this: L -1-2-3------4------5-6-7-8---- R ---------A------B----------C-- O …

swift reactive-programming rx-swift
Merging two notification observers in RxSwift

I have this piece of code: let appActiveNotifications: [Observable<NSNotification>] = [ NSNotificationCenter.defaultCenter().rx_notification(UIApplicationWillEnterForegroundNotification), NSNotificationCenter.defaultCenter().rx_…

swift rx-swift reactivex
RxSwift: Append elements to Observable<[_]>

I have an array (Observable<[_]>) that is a datasource for a tableview. I want to be able to …

swift rx-swift