Skip to content

Instantly share code, notes, and snippets.

@rexmortus
Created May 22, 2011 01:04
Show Gist options
  • Save rexmortus/985056 to your computer and use it in GitHub Desktop.
Save rexmortus/985056 to your computer and use it in GitHub Desktop.
Example Implementation of isSelectorExcludedFromWebScript:
+ (BOOL)isSelectorExcludedFromWebScript:(sel)aSelector {
if (aSelector == @selector(printMessageToConsole:))
return NO;
return YES;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment