解决方法
只需将属性添加到声明中:
@interface Blah - (void)method __attribute__((deprecated)); @end
如果您的包含正确的翻译,这应该工作正常.也许您已将属性添加到定义中,而不是声明?否则,演示(代码示例)会有所帮助.
更新
虽然上述方法适用于典型的消息,但看起来clang与IBActions相混淆.
使用clang,会隐式插入ibaction属性(对于以前的typedef).
// preprocessed declaration - (void)__attribute__((ibaction))setSomething:(id)sender __attribute__((noreturn)); // preprocessed implementation - (void)__attribute__((ibaction))setSomething:(id)sender ...
因此,看起来编译器只是被这个隐藏的装饰所困惑,并且您还必须将该属性添加到实现/定义以在方法是IBAction时抑制警告.