xcode忽略警告

1、对整个文件使用

  你的工程 -> 你的target -> Build Phases -> Compile Sources -> 搜索要忽略警告的文件名,在 Compiler Flags 列 双击,键入忽略警告的设置。多个设置项使用空格隔开。

  常用的几种警告:

// 忽略未使用变量的警告
 -Wno-unused-variable
// 忽略已过期的类或类成员的警告
 -Wno-deprecated-declarations

2、对某段代码使用。在要使用的代码处,加入如下代码:

#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated"
//  作用范围内的代码
#pragma clang diagnostic pop

3、对整个工程使用(不推荐)。在 Build Settings 里,搜索Inhibit All Warnings ,设置为YES。

你可能感兴趣的:(xcode)