はじめまして、おでんです。 なんかAdvent Calendarってのが流行ってるらしいので、乗っかってみました。 MethodSwizzlingは、Methodで行われる処理を差し替える手段のひとつです。 iOS向けの単純なサンプルを載せておきますので、実行してみて頂けると幸いです。 #import <objc/runtime.h> @interface Test : NSObject -(void)instanceMethod; @end @implementation Test -(void)instanceMethod { NSLog(@"instanceMethod"); } @end int main(int argc, char *argv[]) { @autoreleasepool { id block = ^{ NSLog(@"block"); }; id class =