基本设置
- 未装的电脑
sudo gem install cocoapods
- 安装完了后验证:
pod search AFNetworking //运行结束可按“Q”键退出
- 利用vim创建Podfile
vim Podfile
platform :ios, '7.0'
target 'iOSDemo' do
pod 'AFNetworking', '~> 2.5'
end
保存退出:
:wq
- 安装
pod install
然后会自动生成相应的pod文件和.xcworkspace文件。
错误处理方案 :
-
[!] Unable to find a pod with name, author, summary, or descriptionmatching xxx:
删除cocoapods的索引,然后重新search。
rm ~/Library/Caches/CocoaPods/search_index.json
pod search AFNetworking