为什么UIAlertView的alloc方法的混乱导致递归?

时间:2014-02-14 19:00:28

标签: objective-c cocoa-touch core-foundation swizzling

我正在玩弄混蛋,并且无法解决这个问题。我的alloc swizzle看起来像这样:

@interface UIAlertView (Custom)
+ (id)allocCustom;
@end

@implementation UIAlertView (Custom)    
+ (void)load
{
    Method original;
    Method mock;
    original = class_getClassMethod(self, @selector(alloc));
    mock = class_getClassMethod(self, @selector(allocCustom));
    method_exchangeImplementations(mock, original);
}

+ (id)allocCustom
{
    NSLog(@"Custom!");
    return [self allocCustom];
}    
@end

如果我暂停在重复调用的NSLog语句中,我会在调用堆栈中看到:

* thread #1: tid = 0x2c388a, 0x00003a2f My App`+[UIAlertView(self=0x03825c74, _cmd=0x0327e663) allocCustom] + 31 at MYClass.m:62, queue = 'com.apple.main-thread, stop reason = breakpoint 4.1
    frame #0: 0x00003a2f My App`+[UIAlertView(self=0x03825c74, _cmd=0x0327e663) allocCustom] + 31 at iBFGClientAppDelegate.m:62
    frame #1: 0x036c7b42 CoreFoundation`+[NSTimeZone timeZoneWithName:] + 34
    frame #2: 0x036c7a52 CoreFoundation`+[NSTimeZone systemTimeZone] + 626
    frame #3: 0x036c7767 CoreFoundation`+[NSTimeZone defaultTimeZone] + 71
    frame #4: 0x036e82cd CoreFoundation`CFTimeZoneCopyDefault + 45
    frame #5: 0x036f8b90 CoreFoundation`CFCalendarCreateWithIdentifier + 544
    frame #6: 0x03705f2c CoreFoundation`__CFLogCString + 124
    frame #7: 0x03705e6e CoreFoundation`_CFLogvEx + 270
    frame #8: 0x01581fbc Foundation`NSLogv + 137
    frame #9: 0x01581f28 Foundation`NSLog + 27
    frame #10: 0x00003a3a My App`+[UIAlertView(self=0x03825c74, _cmd=0x0327e663) allocCustom] + 42 at MYClass.m:62
    frame #11: 0x036c7b42 CoreFoundation`+[NSTimeZone timeZoneWithName:] + 34
    frame #12: 0x036c7a52 CoreFoundation`+[NSTimeZone systemTimeZone] + 626
    frame #13: 0x036c7767 CoreFoundation`+[NSTimeZone defaultTimeZone] + 71
    frame #14: 0x036e82cd CoreFoundation`CFTimeZoneCopyDefault + 45
    frame #15: 0x036f8b90 CoreFoundation`CFCalendarCreateWithIdentifier + 544
    frame #16: 0x03705f2c CoreFoundation`__CFLogCString + 124
    frame #17: 0x03705e6e CoreFoundation`_CFLogvEx + 270
    frame #18: 0x01581fbc Foundation`NSLogv + 137
    frame #19: 0x01581f28 Foundation`NSLog + 27
    frame #20: 0x00003a3a My App`+[UIAlertView(self=0x01800f3c, _cmd=0x0327e663) allocCustom] + 42 at MYClass.m:62
    frame #21: 0x023fb8ae UIKit`UIApplicationMain + 60
    frame #22: 0x0000293b My App`main(argc=1, argv=0xbfffedac) + 75 at main.m:18

似乎timeZoneWithName:正在回调我的自定义alloc方法。很明显,当没有调整分配时,没有递归,但我很困惑这里发生了什么。

2 个答案:

答案 0 :(得分:2)

您的问题很有可能发生,因为您使用方法allocCustomUIAlertView上调整方法alloc,这是NSObject上的一种方法。根据我的发现,你可以成功地调用NSObject的alloc方法,但是看起来你不能从子类中做到这一点。您可以通过在UIAlertView类别中添加以下内容来查看证明情况:

+ (id)alloc
{
    return [super alloc];
}

通过这样做,它现在可以正常工作。但由于allocNSObject上的一种方法,并且显然没有被UIAlertView覆盖,您可以删除方法调整,并将代码添加到被覆盖的alloc方法中:

+ (id)alloc
{
    NSLog(@"Custom!");
    return [super alloc];
}

现在这可能有点危险,以防Apple在未来的某个时候改变了他们的实现,并且由于某种原因在alloc覆盖了UIAlertView。在这种情况下,我认为你的实现会覆盖他们的,尽管我认为确切的行为在技术上是未定义的。

答案 1 :(得分:0)

我不是方法调配的专家,但我猜测因为你的allocCustom是一个类方法,self实际上是指类本身。你真正想要的是这样的东西

+(id) allocCustom {

 id obj = calloc(class_getInstanceSize(self), 1);
 obj->isa = self;
 obj->retainCount = 1;
 return obj;
}

此链接可能对您有用:https://www.mikeash.com/pyblog/friday-qa-2013-01-25-lets-build-nsobject.html