There are some files in my iOS project that have some warnings, and I want to ignore those warnings. I don\'t want to disable warnings in the entire project (know how to do
You can select specific target -> Build settings, search for Inhibit All Warnings and set to YES. This will disable warnings on this target.
This can be useful if you use some code like JSONKit with cocoapods, and you don't want to see how compiler cries about warnings :)