Skip to content

Instantly share code, notes, and snippets.

@onmyway133
Last active August 29, 2015 14:02
Show Gist options
  • Save onmyway133/f1f1fac19e5a13677910 to your computer and use it in GitHub Desktop.
Save onmyway133/f1f1fac19e5a13677910 to your computer and use it in GitHub Desktop.
Suppress Xcode warning
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