Cocoa Pods Cocoapods Basic Cheat Sheet
Create a Podfile at the root of your project
platform :ios, '5.0'
pod 'AFNetworking'
pod 'OHAttributedLabel'
target :MyAppTests, :exclusive => true do
pod 'Kiwi'
endUpdate Cocoapods Version
gem install cocoapodsCreate podfile in root of project. Example podfile.
platform :ios, '6.0'
pod 'AFNetworking', '~> 1.2.1'
pod 'MBProgressHUD', '~> 0.6'
pod 'Facebook-iOS-SDK', '~> 3.8'Update/Install Cocoapods
pod installSearch for Pods: http://cocoapods.org/