(XCode) 编译某些文件时关闭警告?

发布于 2024-12-17 19:57:37 字数 111 浏览 0 评论 0原文

我在我的 iOS 项目中使用了几个生成一些警告的第三方库。有没有一种方法可以仅关闭对这些特定文件的警告,类似于通过将“-fno-objc-arc”标志添加到“编译源”区域来按文件关闭 ARC 的方法构建阶段?

I use several third-party libraries in my iOS project that generate some warnings. Is there a way I can turn off warnings on those specific files only, similar to the way you can turn off ARC on a per-file basis by adding the "-fno-objc-arc" flag to the "compile sources" area in build phases?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

噩梦成真你也成魔 2024-12-24 19:57:37

在 Xcode 中,有一个选项可以设置每个文件的编译器标志:

  • 在“项目导航器”窗格中,单击您的项目
  • 选择您正在构建的目标
  • 选择“构建阶段”选项卡
  • 向下滚动并展开“编译源”阶段
  • 找到“编译器标志” " 列
  • 将要抑制警告的文件的编译器标志设置为 -w

In Xcode, there's an option to set per-file compiler flags:

  • In the Project Navigator pane, click on your project
  • Select the target you're building with
  • Choose the Build Phases tab
  • Scroll down and expand the Compile Sources phase
  • Locate the "Compiler Flags" column
  • Set the compiler flag to -w for the file you want to suppress warnings for
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文