安装正常情况下使用cocoapods
1、切换到cocoapods
cd ~/.cocoapods
2、测试cocoapods功能
pod search AFNetworking
cocoa pods安装时遇到
[!] /usr/bin/git clone https://github.com/CocoaPods/Specs.git master
Cloning into 'master'…
error: RPC failed; curl 56 SSLRead() return error -36
fatal: The remote end hung up unexpectedly
fatal: early EOF
fatal: index-pack failed
这个问题,使用终端执行语句
brew install git —with-brewed-curl —with-brewed-openssl
或
brew reinstall git —with-brewed-curl —with-brewed-openssl
,等完成后依次运行
git config —global http.postBuffer 9999999
—keepalive-time 99999
pod setup
,等下载完就可以了,你可以通过:
1.前往文件夹~/.cocoapods,看文件夹多大,
2.打开活动检测器,点击网络,搜索git,能看到一直在接收数据。
✅对于管理已用cocoapods管理的项目,若Podfile、Podfile.lock无法打开,可右键|打开方式,选择记事本或文本编辑等打开再进行编辑。
ps:cocoa pods使用方法有所改变
pod file里的内容格式:
platform :ios, '7.0'
target 'AppName' do
pod 'Masonry'
pod 'AFNetworking'
pod 'AFNetworking+Ext'
end
AppName此处换成你工程的名字