首页 > 代码库 > CocoaPods 更新慢&swift版本适配

CocoaPods 更新慢&swift版本适配

一、更新慢的问题

使用CocoaPods来添加第三方类库,无论是执行pod install还是pod update都卡在了Analyzing dependencies不动

原因在于当执行以上两个命令的时候会升级CocoaPods的spec仓库,加一个参数可以省略这一步,然后速度就会提升不少。

加参数的命令如下:

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

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

 

二、我在swift工程用CocoaPods导入第三方的时候,会有提示版本与你当前使用swift版本不匹配的问题

在Podfile中加上这段话可以限制导入的第三方类库的语言版本

<style>p.p1 { margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #000000 } p.p2 { margin: 0.0px 0.0px 0.0px 0.0px; font: 11.0px Menlo; color: #ba2da2 } span.s1 { } span.s2 { color: #ba2da2 } span.s3 { color: #272ad8 }</style>

post_install do |installer|

    installer.pods_project.targets.each do |target|

        target.build_configurations.each do |config|

            config.build_settings[‘SWIFT_VERSION‘] = ‘2.3‘

        end

    end

end

CocoaPods 更新慢&swift版本适配