Podfile语法
2017-02-05 本文已影响176人
Steven_Wu
1.单个target依赖库
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
target 'targetName1' do
pod 'MJRefresh', '~> 1.4.6'
pod 'Masonry', '~> 0.6.1'
end
2.多个target依赖库
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
target 'targetName1' do
pod 'MJRefresh', '~> 1.4.6'
pod 'Masonry', '~> 0.6.1'
endtarget '
target 'Name2' do
pod 'MJRefresh', '~> 1.4.6'
pod 'Masonry', '~> 0.6.1'
pod 'AFNetworking', '~> 3.0'
end
3.多个target依赖库高端写法
source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.0'
# ruby语法: 如果有新的target直接加入该数组
targetsArray = ['targetName1', 'targetName2', 'targetName3', 'targetName4', 'targetName5']
# 循环
targetsArray.each do |t|
target t do
pod 'MJRefresh', '~> 1.4.6'
pod 'Masonry', '~> 0.6.1'
end
end
注意:
(1) platform : 和 ios之间不能有空格,否则报pod语法错误
(2)podfile中的注释使用#号,不能使用//,否则报错
(3)Podfile错误写法展示:
Podfile写法问题.png