With all the SDKs floating around, it's handy to be able to build for multiple SDKs and platforms. However, bouncing from 3.2 to 3.0 and even occasionally 2.x, I frequently get deprecated warnings involving methods that have changed or been superseded:

warning: 'UIKeyboardBoundsUserInfoKey' is deprecated.

Since I still want to maintain compatibility with older OSes, and I'm also striving to remove 'noise' when building, is there a way to turn off or disable these warnings?

link|improve this question

feedback

3 Answers

up vote 9 down vote accepted

Try -Wno-deprecated.

link|improve this answer
6  
Turns out it's even easier than that; there's a checkbox in the Xcode target settings; your answer prompted me to search there. Thanks! – Ben Gottlieb Apr 12 '10 at 14:20
feedback

Since I yet can not add a comment to the @samiq post, I think I will expand it. Input mentioned directive before a function / method in which you use deprecated stuff. Then you can restore the previous setting after the definition of the function end:

#pragma GCC diagnostic ignored "-Wdeprecated-declarations"
- (void) methodUsingDeprecatedStuff {
    //use deprecated stuff
}
#pragma GCC diagnostic warning "-Wdeprecated-declarations"
link|improve this answer
Excellent! This is what I was looking for +1 :) – Zoran Simic Jan 2 '11 at 4:16
1  
Awesome tip! Too bad it can't be declared inside a method. – Dustin May 24 '11 at 16:16
feedback

You can also suppress warnings per file by using

#pragma GCC diagnostic ignored "-Wdeprecated-declarations"

which in turn makes it a little bit better practice than just suppressing all warning once and together... after all you got to know what you are doing it for.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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