美文网首页
pod使用小记

pod使用小记

作者: 吾乃常山赵子龙 | 来源:发表于2016-11-07 10:10 被阅读0次

gem升级

sudo gem update --system

pod安装

gem sources --remove https://rubygems.org/ //去掉ruby软件源
gem sources -a https://ruby.taobao.org/ //添加淘宝的源
gem sources -l //查看ruby软件源
sudo gem install cocoapods

符号

~>0.1 大于等于0.1 小于1
~>0.1.1大于等于0.1.1小于0.2
其他不解释

pod安装升级卡可不升级本地库

pod install --verbose --no-repo-update

pod中使用ruby

ruby语法随便用如:

platform :ios,'7.0'
def mypod(xxx)
target xxx do
pod 'Masonry', '~> 0.6.1'
pod 'MJRefresh', '~> 2.0.4'
pod 'MBProgressHUD', '~> 0.9.1'
pod 'MWPhotoBrowser', '~> 2.1.1'
pod 'QBImagePickerController', '~> 2.5.2'
pod 'SDWebImage', '~> 3.7.3'
pod 'BaiduMapKit'
pod 'MJExtension'
pod 'UMengAnalytics'
pod 'AFNetworking'
end
end
mypod("工程名")
mypod("工程名Debug")
mypod("工程名Pre")

相关文章

网友评论

      本文标题:pod使用小记

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