Skip to content

Instantly share code, notes, and snippets.

Created March 8, 2013 21:02
Show Gist options
  • Save anonymous/5119816 to your computer and use it in GitHub Desktop.
Save anonymous/5119816 to your computer and use it in GitHub Desktop.
Dump class inheritance
#import <objc/runtime.h>
void dumpInheritance(Class cls) {
do {
NSLog(@"%@", cls);
} while ((cls = class_getSuperclass(cls)) != [NSObject class]);
NSLog(@" = = %@ ends", @(__PRETTY_FUNCTION__));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment