After creating a new target in an iOS project, there are tons of deprecation warnings. I want to see these in the other targets, too.
I've searched my whole project for deprecated
(as this answer would indicate) and I've also looked for -W
(as mentioned here), and found that I did do this:
#pragma clang diagnostic ignored "-Warc-performSelector-leaks"
in one or two places, but that's not it. I've looked at most answers regarding suppressing warnings, but I haven't found where I shut this off.
Where else might deprecation warnings been shut off? I would like to turn my warnings back on.
Example
This should result in a warning:
self.numericLabel.lineBreakMode = UILineBreakModeClip;// NSLineBreakByClipping;