1.cocoapods 安装
1.查看ruby版本 : ruby -v
2.移除镜像:gem sources --remove 当前域名
3.添加新源:gem sources -a 域名
4.下载cocoa pods:sudo gem install cocoapods
5.搜寻第三方库 : pod search 关键字
二。关于Podfile文件的问题
当前版本的cocoa pods需要制定target :
target ‘target名’ do
兼容swift:
use_frameworks!
三。关于头文件导入问题
找到工程的target->building setting->user header search path 添加一个值
$(PODS_ROOT) 选择recursive。这样就可以用双引号导入pods里面的文件
不设置的话就用<>引入pods文件