I'm trying to add Reactive Cocoa libraries to my Xcode project, but I can't. I'm trying to find some tutorial, because I can't understand the one in the Reactive Cocoa page.. How can I add this library to my proyect?
Asked
Active
Viewed 1,354 times
2 Answers
4
I recommend using CocoaPods. I wrote a tutorial about it.
Basically you install it via [sudo] gem install cocoapods
, then create a Podfile on your project's folder:
platform :ios, '6.0' #deploy platform
pod 'ReactiveCocoa'
Then, run pod install
and use the .xcworkspace
it created.

Marcelo
- 9,916
- 3
- 43
- 52
3
It's quite a bit down on the README
, but the instructions for adding ReactiveCocoa to an Xcode project can be found here:
https://github.com/ReactiveCocoa/ReactiveCocoa#importing-reactivecocoa

Dave Lee
- 6,299
- 1
- 36
- 36