I have imported the three20 project into my project, and when I upgraded to xcode 4.2 with iOS 5, a bunch of warnings appeared in the project. I don't care about them, but they make a lot of noise, and it's easy to miss any real warnings in my project now. Is there a way to disable warnings for those specific libraries?

link|improve this question

69% accept rate
feedback

2 Answers

  1. If your third-party libraries are added as a separate target, you can check Inhibit all warnings for that specific target to turn all warnings off.

  2. If your library is added as plain source files to your current target, you can set -w compiler flag for individual sources to mute all warnings in them. You have to go to Build phases menu of your target configuration and set this flag for each source file in Compile Sources section by double clicking on each file end entering -w flag. enter image description here

link|improve this answer
1  
This is absolutely the correct approach. Do not modify 3rdparty code, and do not turn off warnings globally. Another similar approach is to move the 3rdparty code into a separate project and build a static lib. That way it can have its own build settings. – Rob Napier Dec 20 '11 at 18:42
feedback

You should really fix any warnings that you can. These could potentially cause issues in future projects.

Either way, you can suppress warnings, individually.

enter image description here

As well for Interface Builder XIB's:

enter image description here

I am not aware of any library-specific ways of silencing warnings, but these should work as a whole.

link|improve this answer
+1 You should really fix any warnings that you can – user971401 Dec 20 '11 at 18:35
3  
But you should not try to fix warnings in 3rdparty code. That's a recipe for disaster when you have to upgrade. And you should not be turning off warnings globally just because a 3rdparty has warnings. See @iHunter's answer for the correct approach. – Rob Napier Dec 20 '11 at 18:41
feedback

Your Answer

 
or
required, but never shown

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