Skip to content

Instantly share code, notes, and snippets.

@norio-nomura
Created October 23, 2012 08:15
Show Gist options
  • Save norio-nomura/3937593 to your computer and use it in GitHub Desktop.
Save norio-nomura/3937593 to your computer and use it in GitHub Desktop.
superに任意のメッセージを送る方法
#import <objc/objc-runtime.h>
// [super description];
struct objc_super s = {self, [self superclass]};
objc_msgSendSuper(&s, @selector(description));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment