Skip to content

Instantly share code, notes, and snippets.

@Fykec
Created February 20, 2014 03:16
Show Gist options
  • Save Fykec/9106503 to your computer and use it in GitHub Desktop.
Save Fykec/9106503 to your computer and use it in GitHub Desktop.
Xcode Debug Console show all selectors
p int $num = 0;
expr Method *$m = (Method *)class_copyMethodList((Class)object_getClass(self), &$num);
expr for(int i=0;i<$num;i++) { (void)NSLog(@"%s",(char *)sel_getName((SEL)method_getName($m[i]))); }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment