0

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?

user1600801
  • 269
  • 7
  • 25

2 Answers2

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