CocoaPods是现在最流行的帮助开发者管理iOS第三方框架的工具。
一:安装CocoaPods
1.在终端中输入命令查看当前的ruby源:gem source -l
//如果没有安装过CocoaPods,最开始可能是这样的
*** CURRENT SOURCES ***
https://rubygems.org/
2.修改ruby源(由于墙的存在,大家都明白我们必须切换源):
删除旧源:gem sources --remove https://rubygems.org/
添加新源:gem sources -a https://ruby.taobao.org/
查看新源:gem source -l
3.安装CocoaPods:sudo gem install cocoapods
这中间会产生一堆信息
最后查看安装的版本:pod --version
4.利用CocoaPods管理第三方框架
利用终端进入新项目的根路径:cd (path,可以直接拖入工程目录)
创建Podfile 文件:pod init
Podfile里的内容:
# Uncomment this line to define a global platform for your project
platform :ios, '9.0'
target 'Your Project' do
# Comment this line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# 输入你所要引入的第三方库,如下:
pod"AFNetworking","~> 2.0"
# Pods for Your Project
end
5.解析执行Podfile文件:
pod setup
pod install
pod update
其中使用pod search 命令可以搜索支持CocoaPods的第三方框架
网友评论