Skip to content

Instantly share code, notes, and snippets.

@pingles
Created June 23, 2009 23:08
Show Gist options
  • Save pingles/134902 to your computer and use it in GitHub Desktop.
Save pingles/134902 to your computer and use it in GitHub Desktop.
int i=0;
unsigned int mc = 0;
Method* mlist = class_copyMethodList([MKMapView class], &mc);
NSLog(@"%d methods", mc);
for(i=0;i<mc;i++)
NSLog(@"Method no #%d: %s", i, sel_getName(method_getName(mlist[i])));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment