1:StackOverFlow上也有关于这个问题的答案。
2:将下述内容添加在PodFile的最下方,重新执行Pod install。
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '8.0'
end
end
end
注意修改版本号与你的 platform :ios, '8.0' 一致。