RuntimeDemo
RuntimeDemo copied to clipboard
Objective-C Runtime机制的示例代码
Results
1
RuntimeDemo issues
Sort by
recently updated
recently updated
newest added
你好,想请教一下,在Method Resolution部分里的这个方法内: ``` + (BOOL)resolveInstanceMethod:(SEL)sel { if (sel == @selector(sendMessage:)) { class_addMethod([self class], sel, imp_implementationWithBlock(^(id self, NSString *word) { NSLog(@"method resolution way : send message = %@", word); }), "v@*");...