Xcode升级到最新的14.3后,项目都无法编辑通过
研究后发现cocopods 引入的三方库默认都是iOS8.0,在新版废弃了某些文件导致无法编译通过。
把报错的cocopods引入的库的最低版本改为iOS11 即可解决。
也可以在Podfile中添加脚本,之后再pod install 一遍即可:
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'] = '11.0'
end
end
end
end