为啥我的 [UIScrollView removeFromSuperview] 崩溃了?

Posted

技术标签:

【中文标题】为啥我的 [UIScrollView removeFromSuperview] 崩溃了?【英文标题】:Why my [UIScrollView removeFromSuperview] is crashing?为什么我的 [UIScrollView removeFromSuperview] 崩溃了? 【发布时间】:2013-06-18 13:33:24 【问题描述】:

崩溃日志如下。

您知道[UIScrollView removeFromSuperview] 可能崩溃的任何特定原因吗?滚动视图包含具有不同类型UIViews 的视图层次结构。我还发现临时版本崩溃通常不是调试版本。我找不到任何理由。

相同的视图控制器在 iPhone 中以不同的流程加载,运行良好。但在 iPad 中它崩溃了。 在 iPad 中,在容器视图控制器中,仅加载 viewcontroler.view。

Incident Identifier: EE102239-34D1-4BE7-8B52-41F74AB26203
CrashReporter Key:   2b11ea2a01ac5618e199ffc5a1e1f321600bb6a9
Hardware Model:      iPad3,4
Version:         ??? (???)
Code Type:       ARM (Native)
Parent Process:  launchd [1]

Date/Time:       2013-06-18 15:19:16.132 +0200
OS Version:      ios 6.1.3 (10B329)
Report Version:  104

Exception Type:  EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x00000000
Crashed Thread:  0

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   libobjc.A.dylib                 0x3bab7070 prepareForMethodLookup + 20
1   libobjc.A.dylib                 0x3bab6fb2 lookUpMethod + 42
2   libobjc.A.dylib                 0x3bab6f7e _class_lookupMethodAndLoadCache3 + 14
3   libobjc.A.dylib                 0x3bab6638 objc_msgSend_uncached + 24
4   QuartzCore                      0x357f2a72 CA::Layer::contents_visibility_changed(CA::Transaction*, bool) + 50
5   QuartzCore                      0x357f29de CA::Layer::mark_visible(CA::Transaction*, bool) + 190
6   QuartzCore                      0x357f29b2 CA::Layer::mark_visible(CA::Transaction*, bool) + 146
7   QuartzCore                      0x357f29b2 CA::Layer::mark_visible(CA::Transaction*, bool) + 146
8   QuartzCore                      0x357f29b2 CA::Layer::mark_visible(CA::Transaction*, bool) + 146
9   QuartzCore                      0x357f29b2 CA::Layer::mark_visible(CA::Transaction*, bool) + 146
10  QuartzCore                      0x357f28d2 CA::Layer::update_removed_sublayer(CA::Transaction*, unsigned int) + 18
11  QuartzCore                      0x357f255a CA::Layer::remove_sublayer(CA::Transaction*, CALayer*) + 130
12  QuartzCore                      0x357f246a CA::Layer::remove_from_superlayer() + 34
13  UIKit                           0x35a6e92c -[UIView(Hierarchy) removeFromSuperview] + 144
14  UIKit                           0x35b857bc -[UIScrollView removeFromSuperview] + 60
15  MyApp           0x000bde8a -[iPadNavigationController vcAnimationDone] (iPadNavigationController.m:400)
16  UIKit                           0x35a55ab6 -[UIViewAnimationState sendDelegateAnimationDidStop:finished:] + 154
17  UIKit                           0x35aca8f8 -[UIViewAnimationState animationDidStop:finished:] + 44
18  QuartzCore                      0x35801304 CA::Layer::run_animation_callbacks(void*) + 204
19  libdispatch.dylib               0x3bed55d8 _dispatch_client_callout + 20
20  libdispatch.dylib               0x3bed8e40 _dispatch_main_queue_callback_4CF + 224
21  CoreFoundation                  0x33c051ac __CFRunLoopRun + 1284
22  CoreFoundation                  0x33b78238 CFRunLoopRunSpecific + 352
23  CoreFoundation                  0x33b780c4 CFRunLoopRunInMode + 100
24  GraphicsServices                0x37733336 GSEventRunModal + 70
25  UIKit                           0x35a942b4 UIApplicationMain + 1116

代码中的几行(按要求),

    previous = showing;
    showing = [ vc retain ];
    showing.view.frame = startFrameIn;
    [ container addSubview:showing.view ];

    CGContextRef context = UIGraphicsGetCurrentContext();
    [ UIView beginAnimations:nil context:context ];
    [ UIView setAnimationDelegate:self ];
    [ UIView setAnimationDidStopSelector:@selector(vcAnimationDone) ];
    [ UIView setAnimationCurve:UIViewAnimationCurveEaseOut ];
    [ UIView setAnimationDuration:0.4 ];

    previous.view.frame = endFrameOut;
    showing.view.frame = detailFrame;

    [ UIView commitAnimations ];


- (void) vcAnimationDone 
    if ( previous != nil ) 
        if (previous.view.superview != nil) 
            [previous.view removeFromSuperview];
        
        [ previous release ];
        previous = nil;
    

【问题讨论】:

你能发布导致崩溃的代码吗? 是否有可能另一个动画仍在运行?似乎有些消息要发送到nil 实例。是在ARC下编译的吗? 尝试在模拟器中运行寻找僵尸的仪器 您为哪个版本的 iOS 编写代码?手动引用计数,iOS4 中已弃用的动画方法…… 适用于 iOS 4.3。对于 iPad 中的每个按钮按钮,我要加载 4 个 vc。并且负载重新加载动画。所以它真正的其他动画在加载另一个 vc 时运行。我无法在调试模式下重现它,只有 adhoc 模式我有这个错误。 【参考方案1】:

一个很可能的原因是您过度释放了滚动视图或其中的一个视图。

调用removeFromSuperview 然后释放视图而不是简单地减少保留计数。

【讨论】:

【参考方案2】:

其实,如果你还在纠结非 ARC 项目,Static Code Analysis 对这类 bug 非常有用。保留/释放平衡问题很难确定,而且方法不完整几乎不可能,所以我建议您尽可能发布完整的方法主体。

【讨论】:

【参考方案3】:

感谢大家的回答、提示和技巧。但是,我想与您分享的一件事是崩溃的原因。我发现崩溃发生在不同时间的不同线程。在我的 iPad 应用程序中,我有几个使用按钮按下/菜单加载的视图。一些按钮按下从 Web 服务获取数据。所以我对崩溃、动画或 url 连接等原因感到有点困惑......我尝试使用启用的 NSZombie 对象,但它没有显示任何信息。 然后我尝试了 Guard Malloc。这仅在模拟器中运行。神奇地我找到了崩溃的代码点。我具有将十六进制字符串转换为数据的功能。我有一行代码可以使 C 字符串为空终止。我在最后一个索引处分配了 0。这使得崩溃!

tmpCh[count] = 0;

我不知道为什么,但可能在 iOS 的内存管理过程中需要一些时间,所以它在不同的时间在不同的线程崩溃。但是使用模拟器中的Guard malloc,它总是在这里指出,当我重写代码时,崩溃就消失了。

/* Converts a hex string to bytes.
 Precondition:
 . The hex string can be separated by space or not.
 . the string length without space or 0x, must be even. 2 symbols for one byte/char
 . sample input: 23 3A F1 OR 233AF1
 */
+ (NSData *) dataFromHexString:(NSString*)hexString


    if (hexString.length < 1) 
        return nil;
    

    char * tmpCh = (char *) malloc([hexString length] * sizeof(char));
    int count = 0;
    for (int k=0; k<hexString.length;k++) 
        char c = [hexString characterAtIndex:k];

        if (c == (char)0x20)  //skip space
            continue;
        

        if (c == '0')  // skip 0x
            if(k+1 < hexString.length)
                if ([hexString characterAtIndex:k+1] == 'x'
                    || [hexString characterAtIndex:k+1] == 'X' )
                
                    k = k + 1;
                    continue;
                
            
        

        tmpCh[count] = c;
        count++;
    
    tmpCh[count] = 0; // make null terminated string

    if (count % 2) 
        return nil;
    

    NSString *temp = [[NSString alloc] initWithUTF8String:tmpCh];
    free(tmpCh);

    if ([temp length] % 2 != 0) 
        return  nil;
    

    NSMutableData *result = [[NSMutableData alloc] init];
    unsigned char byte;
    char hexChars[3] = 0;
    for (int i=0; i < (temp.length/2); i++) 
        hexChars[0] = [temp characterAtIndex:i*2];
        hexChars[1] = [temp characterAtIndex:i*2+1];

        if (![Util isValidChar:hexChars[0]] || ![Util isValidChar:hexChars[1]]) 
            return nil;
        
        byte = strtol(hexChars, NULL, 16);
        [result appendBytes:&byte length:1];
    

    NSData * data = [NSData dataWithData:result];
    [result release];
    return data;

【讨论】:

以上是关于为啥我的 [UIScrollView removeFromSuperview] 崩溃了?的主要内容,如果未能解决你的问题,请参考以下文章

为啥当键盘弹出时我的 UIScrollView 滚动错误?

为啥我的 UIView 在滚动时会在 UIScrollView 内移动?

为啥我的 uicollectionview 不随底层 uiscrollview 一起移动?

为啥我的 [UIScrollView removeFromSuperview] 崩溃了?

为啥程序背景会减慢 UIScrollView?

为啥显示键盘时 UIScrollView 不滚动?