Skip to content

Instantly share code, notes, and snippets.

@z5ottu
Last active March 4, 2016 09:38
Show Gist options
  • Save z5ottu/effbfeec0cdfdc45df28 to your computer and use it in GitHub Desktop.
Save z5ottu/effbfeec0cdfdc45df28 to your computer and use it in GitHub Desktop.
#import 

SomeClass * t = [[SomeClass alloc] init];
int i=0;
unsigned int mc = 0;
Method * mlist = class_copyMethodList(object_getClass(t), &mc);
NSLog(@"%d methods", mc);
for(i=0;i

/* note mlist needs to be freed */

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment