cocoapods入门使用

CocoaPods is a dependency manager for Swift and Objective-C Cocoa projects. It has over 51 thousand libraries and is used in over 3 million apps. CocoaPods can help you scale your projects elegantly.

Install

CocoaPods is built with Ruby and is installable with the default Ruby available on OS X. We recommend you use the default ruby.
Using the default Ruby install can require you to use sudo when installing gems. Further installation instructions are in the guides.

1
2

$ sudo gem install cocoapods

We also have a Mac app for CocoaPods. It only gets major releases ATM though.
< !–more–>

Get Starded

1
2
3
4
5
6
7
8
platform :ios, '8.0'
use_frameworks!

target 'MyApp' do
pod 'AFNetworking', '~> 2.6'
pod 'ORStackView', '~> 3.0'
pod 'SwiftyJSON', '~> 2.3'
end

Tip: CocoaPods provides a pod init command to create a Podfile with smart defaults. You should use it.

Now you can install the dependencies in your project:

1
$ pod install

Make sure to always open the Xcode workspace instead of the project file when building your project:

1
open App.xcworkspace

Now you can import your dependencies e.g.:

1
#import <Reachability/Reachability.h>