↧
Answer by Chris Frederick for How can I deprecate an entire protocol?
I haven't tried this myself, but I think that the following syntax should work.__attribute__ ((deprecated))@protocol MyProtocol@endThis parallels the syntax for deprecating an entire interface as well...
View ArticleHow can I deprecate an entire protocol?
Is it possible to deprecate an entire protocol? I'm using the GCC compiler that is shipped with iOS SDK 5.0 Beta 7.DEPRECATED_ATTRIBUTE doesn't seem to work.For example, the following two statements do...
View Article