Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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 much obsolete and I don't want simply remove them yet as I know some parts of the overall system use the methods... but there are better (newer) variants available which should be used instead (some of the old ones actually call the new ones, but the overall class interface is getting messy).

Is there a way in which I can mark certain methods as depreciated (like @deprecated in Java and [Obsolete] in .NET).

I see that Apple use Availability.h and have tags such as

__OSX_AVAILABLE_BUT_DEPRECATED(__MAC_NA,__MAC_NA,__IPHONE_2_0,__IPHONE_3_0);

... is this the only way to do it (+ is it App Store safe to do this?) or are there alternatives which will flag a warning in XCode?

share|improve this question

3 Answers

up vote 55 down vote accepted

Source

Deprecation Syntax

Syntax is provided to mark methods as deprecated:

@interface SomeClass
-method __attribute__((deprecated));
@end

or:

#include <AvailabilityMacros.h>
@interface SomeClass
-method DEPRECATED_ATTRIBUTE;  // or some other deployment-target-specific macro
@end
share|improve this answer
4  
This macro makes sense to me, it sort of retains the feel of the __attribute__ syntax. #define __deprecated__ __attribute__((deprecated)) – zekel May 25 '11 at 15:03
Interestingly Xcode does not give me any warnings for using a method marked as depreciated. Is there a compiler flag that needs to be set? – Answerbot Sep 30 '11 at 18:07
In Xcode's code completion dropdown, I see that the method is marked as depreciated, but using it doesn't give a compiler warning. – Answerbot Sep 30 '11 at 18:27
1  
@Answerbot Build settings > warn about deprecated functions ... set this to YES – bandejapaisa May 20 '12 at 8:54
Source link in the answer doesn't work. Try developer.apple.com/library/mac/#documentation/Cocoa/Conceptual/… instead. – yood Jun 8 '12 at 18:39

IMHO, is more easy to write __deprecated:

- (void)myDeprecatedMethod __deprecated;
- (int)methodNameDeprecated:(int)param __deprecated;

Works too on classes

__deprecated
@interface MyDeprecatedClass

  // ... some properties and methods ...

@end
share|improve this answer
2  
This is a two year old question, but thanks anyway! :) – Jamie Chapman Sep 13 '12 at 21:39
Much better way to do this. – SG1 Feb 18 at 15:02

Use the deprecated attribute:

- (int)bar: (int)x __attribute__((deprecated));
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.