Pod是为更新版本而构建的

时间:2017-07-23 23:12:58

标签: ios deployment cocoapods

将我的项目的部署目标和目标从IOS 10.3更改为9.0后,我收到以下错误。我做错了什么?

Error Message

编辑:这些错误仅在发布而不是调试

中运行我的代码时出现

2 个答案:

答案 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