Questions tagged [reactive-swift]

Anything related to the ReactiveSwift library that brings the reactive programming primitives in Swift

ReactiveSwift is a library that brings the reactive programming approach on Swift. It offers composable, declarative, and flexible primitives that are built around the grand concept of streams of values over time.

This is a pure-Swift implementation of the reactive API. It provides all the nuts and bolts, including Signals, SignalProducers, Properties, Actions and Bindings.

ReactiveSwift documentation

ReactiveSwift project on GitHub

124 questions
-1
votes
1 answer

ReactiveSwift buffered pipe

How can a buffered replay subject be implemented in ReactiveSwift? I've looked at replayLazily(upTo:) operator of SignalProducer, and also the pipe() function of the Signal type, however I can't see a straightforward way of creating something…
dd bb33
  • 11
  • 1
-1
votes
1 answer

Button Tap Event not recognized with RxSwift

I have a UIViewController subclass with 3 buttons. After 3 taps on button "continue", I pop this view controller from my navigation stack and push another instance of the same class. However, when I have this new view controller object pushed, I…
Laura Corssac
  • 1,217
  • 1
  • 13
  • 23
-1
votes
1 answer

How to use rac_signalForControlEvents

How can I convert same method "rap_signalForControlEvents" to last working ReactiveCocoa Version? I'm trying to build a example of the book Reactive programming with swift, but when I implemented the same method it doesn't work. I've changed the…
-1
votes
1 answer

Reactive Location - Handle success and failure block

It might be simple question. I'm using Reactive Location, to get user's current location, please find my below code, ReactiveLocation.authorizeAction.apply(.whenInUse).startWithResult { switch $0 { case let .success(status): …
PPL
  • 6,357
  • 1
  • 11
  • 30
1 2 3
8
9