Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 776 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 776 Bytes

RestKit Installation Example with CocoPods

This is a simple application created via the Xcode "Master-Detail Application" template. The only changes made to the files were to complete the installation of RestKit via CocoaPods.

The steps taken to create and configure this project were:

  1. Create project with Master-Detail template
  2. Install CocoaPods: gem install cocoapods
  3. Create Podfile with the following contents:
platform :ios, '5.0'
pod 'RestKit', '~> 0.20.0'
  1. Install via CocoaPods: pod install
  2. Close the project and reopen the workspace.
  3. Add necessary additions to the .pch file. See RKCocoaPods-Prefix.pch
  4. Configure RestKit in the App Delegate. See RKCPAppDelegate.m
  5. Build and Run