美文网首页
iOS podfile 文件

iOS podfile 文件

作者: 草原烈鹰 | 来源:发表于2017-06-08 18:23 被阅读8次

platform :ios, '7.0'
target 'PodTest' do
pod 'AFNetworking', '~> 3.1.0'
pod 'SDWebImage', '3.8.1'
pod 'MBProgressHUD', '~> 1.0.0'
end

若是,提示: add use_frameworks! to your Podfile or target to opt into using it。错误,则需要加入use_frameworks!
e.g..

use_frameworks!
platform :ios,'8.0'
target 'wgjTest00' do
pod 'ReactiveObjC', '3.0.0'

end

相关文章

网友评论

      本文标题:iOS podfile 文件

      本文链接:https://www.haomeiwen.com/subject/ongeottx.html