I\'m part of a team developing a fairly large iPad app and there are many different classes we\'ve created as a result. The trouble is some of the methods are now pretty mu
Syntax is provided to mark methods as deprecated:
@interface SomeClass -method __attribute__((deprecated)); @end
or:
#include @interface SomeClass -method DEPRECATED_ATTRIBUTE; // or some other deployment-target-specific macro @end