Suppressing line specific XCode compiler warnings

Posted by MrHen on Stack Overflow See other posts from Stack Overflow or by MrHen
Published on 2010-05-17T22:00:57Z Indexed on 2010/05/18 0:31 UTC
Read the original article Hit count: 872

Similar to Ben Gottlieb's question, I have a handful of deprecated calls that are bugging me. Is there a way to suppress warnings by line? For instance:

if([[UIApplication sharedApplication] respondsToSelector:@selector(setStatusBarHidden:withAnimation:)]) {

[[UIApplication sharedApplication] setStatusBarHidden:YES withAnimation:UIStatusBarAnimationSlide]; } else { [[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO]; //causes deprecation warning }

All I care about is that line. I don't want to turn off all deprecation warnings. I would also rather not do something like suppress specific warnings by file.

There have been a few other circumstances where I wanted to flag a specific line as okay even though the compiler generates a warning. I essentially want to let my team know that the problem has been handled and stop getting bugged about the same line over and over.

© Stack Overflow or respective owner

Related posts about xcode

Related posts about iphone-sdk