前提是你的Cocoapods已经安装了
1.CD 你的项目下边
vi Podfile
2.然后输入
platform:ios,'8.0'
#use_frameworks!个别需要用到它,比如reactiveCocoa
target'MyApp'do
pod'AFNetworking','~> 3.0'
end
3.里面的MyApp记得替换为自己攻城里面的target。这样就基本OK了,执行pod install / pod update 就都可以了。
前提是你的Cocoapods已经安装了
1.CD 你的项目下边
vi Podfile
2.然后输入
platform:ios,'8.0'
#use_frameworks!个别需要用到它,比如reactiveCocoa
target'MyApp'do
pod'AFNetworking','~> 3.0'
end
3.里面的MyApp记得替换为自己攻城里面的target。这样就基本OK了,执行pod install / pod update 就都可以了。