升级到Xcode14.3修复错误找不到libarclite_iphoneos.a

File not found: /Applications/Xcode-beta.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/arc/libarclite_iphoneos.a

我今天升级到了Xcode14.3,运行了一下项目,发现报错,报了上面的错误。

修复方法如下,在podfile里修改

post_install do |installer|
    installer.generated_projects.each do |project|
          project.targets.each do |target|
              target.build_configurations.each do |config|
                  config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '13.0'
               end
          end
   end
end

你可能感兴趣的:(xcode,macos,ide)