Skip to content

Instantly share code, notes, and snippets.

View ShonFrazier's full-sized avatar
🟢
✍🏻

Shon Frazier ShonFrazier

🟢
✍🏻
View GitHub Profile
#import <objc/runtime.h>
void dumpInheritance(Class cls) {
do {
NSLog(@"%@", cls);
} while ((cls = class_getSuperclass(cls)) != [NSObject class]);
NSLog(@" = = %@ ends", @(__PRETTY_FUNCTION__));
}