cocoapods使用

cocoapods1.0之前:

cocoa pods:
/users/你的用户名/.cocoapods/

vim Podfile
platform :ios, ‘7.0'
pod 'AFNetworking', '~> 3.0.0-beta.2’


ESC :wq


pod update、pod install
cocoapods使用_第1张图片
8EF3EA616D13332B1DCC6A637696C102.jpg
出现上述问题,是因为本地cocoapods版本太低导致,升级cocoapods方法
sudo gem update cocoapods

cocoapods1.0之后:

platform :ios, '8.0'
use_frameworks!
target 'YYFramework' do

//这里可以导入三方库
pod 'AFNetworking', '~> 3.1.0'
pod 'MBProgressHUD', '~> 1.0.0'
pod 'YYWebImage', '~> 1.0.5'
pod 'IQKeyboardManager', '~> 4.0.7'
pod 'Reachability', '~> 3.2'

end

备注:YYFramework为工程名字

你可能感兴趣的:(cocoapods使用)