在ios9.0使用CocoaPod


安装

sudo gem install cocoapod

这里如果下载不动,可能是因为没有修改源(ruby官方的源被强了,可以自行百度改成rubychina的源)


在项目里使用

  1. 进入项目的目录,执行pod init
  2. 打开Podfile,在target里添加自己所需,例如pod 'AFNetworking',效果如下:
platform :ios, '9.0'
target '项目名' do
    pod "AFNetworking"
end
  1. 保存,执行pod install
  2. 关闭之前已经打开的xcode
  3. 直接到项目的文件夹,找到项目里的xxx.xcworkspace, 双击打开,可以看到成功加载了Pods文件夹:
在ios9.0使用CocoaPod_第1张图片
Paste_Image.png

你可能感兴趣的:(在ios9.0使用CocoaPod)