是否可以弃用整个协议?我正在使用iOS SDK 5.0 Beta 7附带的GCC编译器。
DEPRECATED_ATTRIBUTE
似乎不起作用。
例如,以下两个语句不能编译。
@protocol DEPRECATED_ATTRIBUTE MyProtocol
@protocol MyProtocol DEPRECATED_ATTRIBUTE
答案 0 :(得分:55)
我自己没有尝试过,但我认为以下语法应该有用。
__attribute__ ((deprecated))
@protocol MyProtocol
@end
这与弃用整个界面以及单个方法的语法相似。
__attribute__ ((deprecated))
@interface MyClass
@end
@interface MyClass2
- (void) method __attribute__((deprecated));
@end