关于Cocoapods的介绍,我这里直接跳过了。如果不知道cocoapods啥东东可自行百度一下。
- 如果没有安装brew,先执行
/usr/bin/ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
进行安装。 - brew install cocoapods //使用brew来安装cocoapods
- cd /usr/local/Cellar/cocoapods/1.3.1/libexec/gems/cocoapods-1.3.1/lib/cocoapods/command
- 1.3.1 这里要替换成你安装的版本。我这里是1.3.1版本。
-
atom .
//使用atom来打开,如果没有安装atom请先安装atom。或者你可以使用其他的编辑软件来打开。 -
【强力推荐方法】把command目录下所有rb文件里的
github.com
批量替换成gitclub.cn
。[replaceAll] - git clone https://gitclub.cn/CocoaPods/Specs.git ~/.cocoapods/repos/master //耐心等待
- pod setup //耐心等待
- 安装完成了!
简单上手介绍
- cd进入项目根目录
- 通过
pod init
命令创建podfile文件,CocoaPods提供pod init
命令创建一个带有默认配置的podfile文件 -
vim Podfile
输入如下内容
source 'https://gitclub.cn/CocoaPods/Specs.git'
platform :ios, '7.0'
target 'MyApp' do
pod 'AFNetworking', '~> 3.1.0'
end
- pod install --verbose --no-repo-update //不去更新repo,进行安装。
网友评论