答案 0 :(得分:0)
首先尝试清理项目(shift+command+K
)。这可能没有用,但总是值得一试。
如果/当清洁不起作用时,请检查所需的iOS版本是否在podfile
中,然后导航到终端中的项目目录并运行pod update
。
答案 1 :(得分:0)
将其粘贴到podfile的末尾
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '9.0'
end
end
end