使用Pods

下载安装

  • 1 终端操作
    sudo gem install cocoapods
  • 2 查询源
    gem sources -l
  • 3 如果不是淘宝的,则应该更正
    删除之前的源:gem sources --remove https://rubygems.org/
    增加淘宝的源:gem sources -a https://ruby.taobao.org/
  • 4 再次查看源 确保已经更换源成功
    gem sources -l
  • 5 设置pods
    pod setup --verbose
  • 6 查看pods版本,如果有版本号出现,说明安装成功
    pod --version

使用

  • 1 终端 找到工程目录
    cd Desktop/Test
  • 2 初始化
    pod init 如果pod成功安装,会产生一个Podfile文件
  • 3 下载第三方库(例子:MBProgressHUD)
    搜索: pod search hud(这里输入关键字即可)
  • 4 使用Xcode打开Podfile
    下载: open -a Xcode Podfile ->把需要的版本号(pod 'MBProgressHUD', '~> 0.9.2') -> pod install
  • 5 下次安装
    把需要的第三方库粘贴 -> pod update
注意
  • 1 利用CocoPods管理类库后, 以后打开项目就用xxxx.xcworkspace 打开,而不是 之前的.xcodeproj文件
  • 2 每次更改了Podfile文件,你需要重新执行一次pod update命令。
  • 3 CocoaPods在执行pod install和pod update时,会默认先更新一次CocoPods的 spec仓库索引。使用--no-repo-update参数可以禁止其做索引更新操作
pod install --no-repo-update
pod update --no-repo-update

Xcode写入Podfile路径错误解决方法

错误提示:
xcrun: error: active developer path ("/Applications/Xcode 2.app/Contents/Developer") does not exist, use xcode-select --switch path/to/Xcode.app to specify the Xcode that you wish to use for command line developer tools (or see man xcode-select)

解决方法:

终端输入:sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer/

你可能感兴趣的:(使用Pods)