-
消除pods中的警告:
直接在Podfile中添加下面一行命令:
inhibit_all_warnings! -
解决下述警告:
The iOS deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 7.0, but the range of supported deployment target versions is 8.0 to 13.0.99.
在Podfile中添加
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
if config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'].to_f < 8.0
config.build_settings['IPHONEOS_DEPLOYMENT_TARGET'] = '8.0'
end
end
end
end
- 代码中警告的消除
pragma clang diagnostic push
pragma clang diagnostic ignored "警告类型"
pragma clang diagnostic pop
其中警告类型可以通过
屏幕快照 2019-11-01 下午2.51.46.png您可以通过以下方式找到可能遇到的任何警告的编译器和分析器标志:-^单击Xcode Issue Navigatior中的相应条目,然后选择"Reveal in Log"。(如果禁用此选项,请尝试再次构建项目)。
push & pop 用于保存和恢复编译器状态,类似于Core Graphics或OpenGL上下文。
屏幕快照 2019-11-01 下午2.59.47.png
- 添加警告
网友评论