首先进入终端(Terminal)
1、
移除现有Ruby默认源
gem sources --remove https://rubygems.org/
2、
使用新的源(是的,用的就是淘宝的)
gem sources -a https://ruby.taobao.org/
3、
验证新源是否替换成功
gem sources -l
4、
sudo gem install cocoapods
—(安装Cocoapods库很大,可以使用镜像索引
pod repo remove master
pod repo add mastern https://gitcafe.com/akuandev/Specs.git
pod repo update)
pod setup
————使用步骤
1、命令行cd到项目目录;
2、使用vim 创建一个Podfile;
内容这样写:platform:ios,'8.0'
target "Swift Weather(你项目的名字)"do
pod 'AFNetworking’ (要加的库)
end
3、pod install
4、打开Xcode中xcworkspace。