我正在尝试执行以下操作:
- 获得一个class'dealloc IMP
- 向所述类中注入一个自定义 IMP,它本质上调用原始的 dealloc IMP
- 当所述类的实例被释放时,两个 IMP 都应该运行。
这是我的尝试:
@implementation ClassB
- (void)dealloc
{
NSLog(@"\n%@ | %@", self, NSStringFromSelector(_cmd));
}
@end
@implementation ClassC
- (void)swizzleMe:(id)target
{
SEL originalDeallocSelector = NSSelectorFromString(@"dealloc");
__block IMP callerDealloc = [target methodForSelector:originalDeallocSelector];
const char *deallocMethodTypeEncoding = method_getTypeEncoding(class_getInstanceMethod([target class], originalDeallocSelector));
IMP newCallerDealloc = imp_implementationWithBlock(^(id _caller) {
NSLog(@"\n new dealloc | calling block %p for %@", callerDealloc, _caller);
callerDealloc(_caller, originalDeallocSelector);
});
NSLog(@"\nswapping %p for %p", newCallerDealloc, callerDealloc);
class_replaceMethod([target class],
originalDeallocSelector,
newCallerDealloc,
deallocMethodTypeEncoding);
}
@end
像这样使用:
ClassB *b = [[ClassB alloc] init];
ClassC *c = [[ClassC alloc] init];
[c swizzleMe:b];
但结果是:
僵尸对象禁用:
2013-07-03 13:24:58.368 runtimeTest[38626:11303]
swapping 0x96df020 for 0x2840
2013-07-03 13:24:58.369 runtimeTest[38626:11303]
new dealloc | calling block 0x2840 for <ClassB: 0x93282f0>
2013-07-03 13:24:58.370 runtimeTest[38626:11303]
<ClassB: 0x93282f0> | dealloc
2013-07-03 13:24:58.370 runtimeTest[38626:11303]
new dealloc | calling block 0x2840 for <ClassB: 0x93282f0>
2013-07-03 13:24:58.371 runtimeTest[38626:11303]
<ClassB: 0x93282f0> | dealloc
runtimeTest(38626,0xac55f2c0) malloc: *** error for object 0x93282f0: pointer being freed was not allocated
*** set a breakpoint in malloc_error_break to debug
2013-07-03 13:24:58.371 runtimeTest[38626:11303]
new dealloc | calling block 0x2840 for <ClassB: 0x93282f0>
2013-07-03 13:24:58.372 runtimeTest[38626:11303]
<ClassB: 0x93282f0> | dealloc
启用僵尸对象(第 11 行是图中的 EXC_BAD_ACCESS)
2013-07-03 13:34:37.466 runtimeTest[38723:11303]
swapping 0x97df020 for 0x2840
2013-07-03 13:34:37.467 runtimeTest[38723:11303]
new dealloc | calling block 0x2840 for <ClassB: 0x715a920>
2013-07-03 13:34:37.468 runtimeTest[38723:11303]
<ClassB: 0x715a920> | dealloc
关于我做错了什么有什么想法吗?