Top "Rx-swift" questions

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

Manually disposing a DisposeBag in RxSwift

I want to cancel a request and one of the ways is to manually remove the disposable bag. .addDisposableTo(disposeBag) …

swift rx-swift
RxSwift convert Observable<Bool> to Observable<Void>

I am not so convinced with RxSwift yet, and it's really hard to cleat understanding. After reviewing different materials, I …

ios swift generics sequence rx-swift
How to use RxSwift Observable<Int>.interval?

I'm trying to emit a sequence on a ”pulse” at a given time interval. Totally new to everything Rx, but …

swift rx-swift
Ignoring/filtering nil

Is there an operator that can filter nil? The closest I've come is the solution mentioned here: https://github.com/…

swift rx-swift reactivex
Using RxSwift, How To Enable UIButton Based on Valid Text?

In RxSwift/RxCocoa 2.0.0- beta 3, I have a ViewModel with: let someString = Variable("") func isValidSomeString() -> Observable<Bool&…

ios swift rx-swift
How to subscribe on the value changed control event of a UISwitch Using Rxswift

I want to use Rxswift and not IBActions to solve my issue below, I have a UISwitch and I want …

ios swift rx-swift
Paginated API Calls with RxSwift

I am starting my first RxSwift project for an iOS app and learning about reactive programming. So far, the idea …

swift pagination observable rx-swift reactivex
Best data-binding practice in Combine + SwiftUI?

In RxSwift it's pretty easy to bind a Driver or an Observable in a View Model to some observer in …

ios swift swiftui rx-swift combine
Using retryWhen to update tokens based on http error code

I found this example on How to refresh oauth token using moya and rxswift which I had to alter slightly …

ios swift alamofire rx-swift moya
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