Skip to content

Instantly share code, notes, and snippets.

@atroutt
Created June 11, 2015 15:26
Show Gist options
  • Save atroutt/33edd2d2d0a63758365c to your computer and use it in GitHub Desktop.
Save atroutt/33edd2d2d0a63758365c to your computer and use it in GitHub Desktop.
XCode/iOS Silence warning for undeclared selector
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wundeclared-selector"
//whatever code using undeclared selector
#pragma clang diagnostic pop
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment