Last active
August 29, 2015 14:02
-
-
Save onmyway133/f1f1fac19e5a13677910 to your computer and use it in GitHub Desktop.
Suppress Xcode warning
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Deprecated declarations | |
#pragma clang diagnostic push | |
#pragma clang diagnostic ignored "-Wdeprecated-declarations" | |
NSLog(@"Your code goes here"); | |
#pragma clang diagnostic pop | |
PerformSelector | |
#pragma clang diagnostic push | |
#pragma clang diagnostic ignored "-Warc-performSelector-leaks" | |
[self.ticketTarget performSelector: self.ticketAction withObject: self]; | |
#pragma clang diagnostic pop |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment