CocoaPods 给每个库单独指定 Swift 版本教程 —— Jinkey 原创
苹果每年都更新 Swift 版本,但是平常项目中使用的一些开源库却不能及时更新,使用那就需要一部分库继续使用 Swift3.2 版本,一部分使用 Swift4,那么在 Podfile 中应该这么写:
# Swift 版本声明 post_install do |installer| installer.pods_project.targets.each do |target| if ['库的名字1','Jinkey'].include? target.name target.build_configurations.each do |config| config.build_settings['SWIFT_VERSION'] = '4.0' config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO' end else target.build_configurations.each do |config| config.build_settings['SWIFT_VERSION'] = '3.2' config.build_settings['ONLY_ACTIVE_ARCH'] = 'NO' end end end end
相关推荐
baobeiliyue 2020-06-06
starX 2019-12-15
starX 2015-06-15
sgliquangang 2015-10-22
starX 2019-07-01
daiyelang 2019-06-26
pwf00 2019-06-25
lijuan0 2019-06-25
axuair 2019-06-21
lijuan0 2019-06-20
daiyelang 2019-06-20
KaSuperMen 2017-03-29
邓孟鑫 2017-02-26
sgliquangang 2016-10-18
daiyelang 2016-09-05
daiyelang 2016-08-13
KaSuperMen 2016-08-02
starX 2016-08-01
pwf00 2016-07-21