Top "Reactive-cocoa" questions

ReactiveCocoa (RAC) is a Swift framework inspired by Functional Reactive Programming.

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
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
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
How to use Reactive Cocoa with notifications

How can I create a signal out of a notification name? For example, I want to go from: [[NSNotificationCenter defaultCenter] …

ios reactive-cocoa
Explanation of how weakify and strongify work in ReactiveCocoa / libextobjc

I understand that you should use @weakify @strongify to avoid retain cycles but I don't completely understand how they actually …

reactive-cocoa libextobjc
Chaining dependent signals in ReactiveCocoa

In ReactiveCocoa, if we chaining several dependent signals, we must use subscribeNext: for the next signal in the chain to …

ios objective-c reactive-programming reactive-cocoa