1.最近处理马甲包,涉及到多Target的Podfile文件问题,随记录
use_frameworks!
platform :ios, '8.0'
# ruby语法
# target数组 如果有新的target直接加入该数组
targetsArray = ['target1', 'target2', 'target3', 'target4', 'target5']
# 循环
targetsArray.each do |t|
target t do
pod 'AFNetworking', '~> 3.1.0'
pod 'SDWebImage', '~> 4.0.0'
pod 'SVProgressHUD', '~> 2.2.2'
pod 'Masonry', '~> 1.1.0'
pod 'SDCycleScrollView', '~> 1.66'
pod 'YYModel', '~> 1.0.4'
pod 'MJRefresh', '~> 3.1.14.1'
end
end
不同的Target依赖库可以参考官网的写法
附带参考链接:
网友评论