3

I want to use Github's Mantle framework in my iOS application. I am using XCode 4.5 and iOS SDK 6. How do I go about doing so?

This is the framework: https://github.com/github/Mantle

akashivskyy
  • 44,342
  • 16
  • 106
  • 116
Fahim
  • 202
  • 2
  • 12

1 Answers1

3

You should consider using CocoaPods to manage your projects' dependencies. It works just like Ruby gems, and you only have to do this:

Add a file named Podfile

platform :ios
'Mantle', '0.2'

Then install dependencies

$ gem install cocoapods
$ pod install

After this last command, don't use your .xcodeproj anymore. Use the .xcworkspace.

To look for other frameworks

$ pod search restkit // For instance
ldiqual
  • 15,015
  • 6
  • 52
  • 90