Skip to content

Instantly share code, notes, and snippets.

@mschulkind
Created August 31, 2011 22:44
Show Gist options
  • Save mschulkind/1184945 to your computer and use it in GitHub Desktop.
Save mschulkind/1184945 to your computer and use it in GitHub Desktop.
Class superclass = class_getSuperclass([self class]);
Method superDealloc = class_getInstanceMethod(superclass, _cmd);
IMP superDeallocImp = method_getImplementation(superDealloc);
superDeallocImp(self, _cmd);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment