Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Xcode 5 中,有没有办法抑制警告,例如文件数量的未使用变量?特别是最新的 Box2D 2.2.1 会产生一些令人讨厌但无害的警告。
-w您可以在应用程序目标的构建阶段中的“编译源”下,为每个要静音的受影响的 .m 文件添加编译器标志。
-w
在导航器中选择项目,然后从列表中选择目标。选择 Build Phases 选项卡,然后展开 Compile Sources 阶段。Compiler Flags 列是您指定每个文件的编译器标志的地方。输入 -Wno- 以否定警告。例如:-Wno-unused-parameter