如何使用CocoaPods
1.进入主目录下
cd /Users/HYYT/Desktop/支付功能/微信支付宝集成/支付宝微信支付集成
2.建立Podfile(配置文件)
2.1 输入:vim Podfile
2.2 按下:i 进入编辑模式
2.3.输入
platform:ios,'7.0'
pod 'AFNetworking', '~>3.1.0'
//如果是新版 target +"项目名称" do
end
platform:ios,'7.0'
target “支付集成” do
# 网络访问
pod 'AFNetworking', '~>3.1.0'
# 三方适配
pod 'Masonry', '~> 1.0.0'
end
2.4:按下esc :wq保存
3.输入pod install