Questions tagged [reactive-cocoa]

ReactiveCocoa (RAC) is a Swift framework inspired by Functional Reactive Programming. It provides APIs for composing and transforming streams of values.

ReactiveCocoa (RAC) is a Swift framework inspired by Functional Reactive Programming. It provides APIs for composing and transforming streams of values.

860 questions
-1
votes
1 answer

ReactiveCocoa apply same properties on multiple objects

I don't know if ReactiveCocoa can do that, or if it's one of the right use case for it, basically I want to setups 2 or more views the exact same ways, for instance [self.photoOrVideoLabel setTextColor:[UIColor…
Dimillian
  • 3,616
  • 4
  • 33
  • 53
-2
votes
1 answer

How to dismiss Keyboard if subscriber throws an error in reactive cocoa using swift?

I subscribed to a service call and handling error incase if service call throws an error. This is everything done in View Model. So, when an error throws I want to dismiss Keyboard. How can I let my View Model tells to VC to dismiss keyboard. I am…
coolly
  • 343
  • 1
  • 6
  • 16
-2
votes
4 answers

Objective C Project in Xcode 7 CocoaPods Error

The Terminal Error I am receiving after running pod install is: I realize that ReactiveCocoa's cocoapod is entirely in SWIFT and that I need to Bridge the header files, but my attempts have been far from successful. I did find this response from…
ChrisHaze
  • 2,800
  • 16
  • 20
-3
votes
1 answer

Is ReactiveCocoa API work the same as RXAndroid ?

Is ReactiveCocoa API work the same as RXAndroid ? Can I use it to call multiple requests at the same time and combine the results.
iOS Developer
  • 187
  • 1
  • 2
  • 9
-3
votes
1 answer

What does 'array' method in RACSequence (ReactiveCocoa) do?

This is a code snippet from Ray Wenderich's iOS 7 Best Practices article. He's basically fetching a JSON file and making a model for each in the list; return [[self fetchJSONFromURL:url] map:^id(NSDictionary *json) { RACSequence…
Sreejith Ramakrishnan
  • 1,332
  • 2
  • 13
  • 22
1 2 3
57
58