首页 > 代码库 > cocoapods的安装和使用

cocoapods的安装和使用

1.安装

$ gem sources --remove https://rubygems.org/

//等有反应之后再敲入以下命令

$ gem sources -a http://ruby.taobao.org/

$ sudo gem install cocoapods

?

2.使用

$cd **/project

//where the .xcodeproj

$ pod search AFNetworking

//AFNetworking ?可以换成其它想要添加的类库

$ vim Podfile

输入:

? ??platform :ios, ‘7.0‘

? ? pod "AFNetworking", "~> 2.0"

$ pod install

open .xcworkspace