标签:tar 打开终端 blog install touch 使用详解 打开 使用 str
终端上安装了cocoapods后,打开终端输入下面命令:
1 cd /Users/Sivek_lin/Desktop/AFNTest/AFNTest 2 3 touch podfile 4 5 pod search afn 6 7 //该命令代码以AFN框架为例操作的,下面一步之前先打开工程目录中刚刚创建的podfile文件,添加代码信心, 8 9 pod install
官网是这样给推荐的:
在创建Podfile的时候,用这种格式使用,
platform :ios, ‘8.0’ #use_frameworks!个别需要用到它,比如reactiveCocoa target ‘AFNTest‘ do pod ‘AFNetworking‘, ‘~> 3.1.0‘ end
下面是另外一种写法,
platform :ios, ‘8.0‘ #use_frameworks!个别需要用到它,比如reactiveCocoa def pods
pod ‘AFNetworking‘, ‘~> 3.1.0‘
end target ‘AFNTest‘ do pods end
标签:tar 打开终端 blog install touch 使用详解 打开 使用 str
原文地址:http://www.cnblogs.com/sivek/p/6043973.html