使用Clang命令来屏蔽警告

#pragma clang diagnostic push

#pragma clang diagnostic ignored"-Wdeprecated-declarations"

写在这个中间的代码,都不会被编译器提示-Wdeprecated-declarations类型的警告


#pragma clang diagnostic pop

已知的一些编译警告类型

-Wincompatible-pointer-types 指针类型不匹配

-Wincomplete-implementation 没有实现已声明的方法

-Wprotocol 没有实现协议的方法

-Wimplicit-function-declaration 尚未声明的函数(通常指c函数)

-Warc-performSelector-leaks 使用performSelector可能会出现泄漏(该警告在xcode4.3.1中没出现过,网上流传说4.2使用performselector:withObject: 就会得到该警告)

-Wdeprecated-declarations 使用了不推荐使用的方法([UILabel setFont:(UIFont*)])

-Wunused-variable 含有没有被使用的变量


你可能感兴趣的:(使用Clang命令来屏蔽警告)