1、打开终端,输入cd空格,拖拽项目目录到终端,输入touch Podfile,创建文件成功。
2、到项目文件夹中打开podfile文件,输入
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
def pods
pod 'AFNetworking', '~> 3.0'
pod "SDWebImage"
pod "MJExtension"
pod "MJRefresh"
pod 'SVProgressHUD'
pod 'IQKeyboardManager'
pod 'Bugtags'
end
target ‘DoctorKangFu’ do
pods
end
3、编辑成功后保存,返回终端,输入pod install,回车,系统自动安装,安装完成。