xcode8中CocoaPods的使用

1、CocoaPods安装情况下,打开mac终端。

xcode8中CocoaPods的使用_第1张图片

2、创建一个项目。

3、查询需要第三方版本

pod search AFNetworking

xcode8中CocoaPods的使用_第2张图片
xcode8中CocoaPods的使用_第3张图片

退出搜索AFNetworking,输入q

4、终端输入 cd 项目总目录 (如图,直接拖拽项目主目录到终端)

cd /Users/zuofeiyao/Desktop/CocoaPods安装

xcode8中CocoaPods的使用_第4张图片

5.创建Podfiles (配置文件)

vim Podfile

xcode8中CocoaPods的使用_第5张图片

6、输入相应第三方版本(方法一)

键盘输入:i 进入编辑模式

(注意:坑 platform :中间有空格 第二行中间为项目名称 )

platform :iOS,’8.0’

target ‘CocoaPods安装’ do

pod ‘AFNetworking’,’~>3.1.0’

end

xcode8中CocoaPods的使用_第6张图片

键盘输入ESC 并输入 : 然后输入 wq  回车退出

输入相应第三方版本(方法二)

打开刚刚创建的文件 找到Podfile 打开 直接输入

platform :ios,’8.0’

target ‘CocoaPods安装’ do

pod ‘AFNetworking’,’~>3.1.0’

end

然后关闭保存

xcode8中CocoaPods的使用_第7张图片
xcode8中CocoaPods的使用_第8张图片

7、回到终端, 最关键一步 输入:

pod install

xcode8中CocoaPods的使用_第9张图片

这里已经成功导入 AFNetworking  ,并且配置好了 ,查看文件

xcode8中CocoaPods的使用_第10张图片

打开  CocoaPods安装.xcworkspace  文件,测试一下

xcode8中CocoaPods的使用_第11张图片
xcode8中CocoaPods的使用_第12张图片

测试跑起来 没有任何报错 记住 不要打错❌文件

感谢阅览,如有错误,请指正。

你可能感兴趣的:(xcode8中CocoaPods的使用)