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
IMHO, it's easier to write __deprecated:
- (void)myDeprecatedMethod __deprecated; - (int)methodNameDeprecated:(int)param __deprecated;
Works too on classes
__deprecated @interface MyDeprecatedClass // ... some properties and methods ... @end