8

我收到了几个与 iOS 7 中的 UICollectionView 相关的崩溃报告。我无法始终如一地重新创建此崩溃。

Exception Type:  SIGSEGV
Exception Codes: SEGV_ACCERR at 0x91c4392b
Crashed Thread:  0

Application Specific Information:
*** Terminating app due to uncaught exception '', reason: ''

Thread 0 Crashed:
0   libobjc.A.dylib                     0x39dd2b26 objc_msgSend + 6
1   UIKit                               0x31fd5eef -[UICollectionView cellForItemAtIndexPath:] + 111
2   UIKit                               0x32060bfd -[UICollectionView _unhighlightItemAtIndexPath:animated:notifyDelegate:] + 149
3   UIKit                               0x32383947 -[UICollectionView _unhighlightAllItems] + 151
4   UIKit                               0x3205f9fb -[UICollectionView touchesBegan:withEvent:] + 367
5   UIKit                               0x31fcb101 forwardTouchMethod + 233
6   UIKit                               0x31fcb101 forwardTouchMethod + 233
7   UIKit                               0x31e3be4b _UIGestureRecognizerUpdate + 5523
8   UIKit                               0x31e73c41 -[UIWindow _sendGesturesForEvent:] + 773
9   UIKit                               0x31e735e7 -[UIWindow sendEvent:] + 667
10  UIKit                               0x31e48a25 -[UIApplication sendEvent:] + 197
11  UIKit                               0x31e47221 _UIApplicationHandleEventQueue + 7097
12  CoreFoundation                      0x2f69e18b __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 15
13  CoreFoundation                      0x2f69d6e1 __CFRunLoopDoSources0 + 341
14  CoreFoundation                      0x2f69be4f __CFRunLoopRun + 623
15  CoreFoundation                      0x2f606ce7 CFRunLoopRunSpecific + 523
16  CoreFoundation                      0x2f606acb CFRunLoopRunInMode + 107
17  GraphicsServices                    0x342f4283 GSEventRunModal + 139
18  UIKit                               0x31ea8a41 UIApplicationMain + 1137
19  JackThreadsIpad                     0x000922b7 main (main.m:16)

应用程序中的 UICollectionViewCells 共享一个管理突出显示的通用超类。当单元格突出显示时,alpha 会发生变化。

- (void)setHighlighted:(BOOL)highlighted {
    [super setHighlighted:highlighted];

    if (highlighted) {
        self.alpha = 0.8;
    } else {
        self.alpha = 1.0;
    }
}

调用 [super setHighlighted:highlighted] 会导致这样的崩溃吗?该应用程序是使用 XCode 4 编译和提交的,并且仅在 iOS 7 上发生。任何其他建议来找出发生这种情况的位置。谢谢你的帮助。

编辑:我能够在调试器中捕捉到这一点,但它仍然不能始终如一地重现。崩溃是:

[NSIndexPath section] message sent to deallocated instance XXXXXXXX
4

4 回答 4

4

如果您在用户拖动视图时调用 reloadData,这可能就是原因。

我通过类似的崩溃报告遇到了与此相关的崩溃,并通过延迟 reloadData 调用直到用户完成滚动视图之后“修复”了该问题。例如,创建一个包装方法而不是直接调用 reloadData。

- (void)updateData {
     if (self.collectionView.isTracking) {
         self.updateDataOnScrollingEnded = YES;
     } else {
         [self.collectionView reloadData];
     }
}

然后当滚动结束时,从滚动视图的委托方法中调用 updateData 方法(如果需要)。

- (void)scrollViewDidEndDragging:(UIScrollView *)scrollView willDecelerate:(BOOL)decelerate
{
    if (!decelerate) {
        [self scrollViewStopped:scrollView];
    }
}

- (void)scrollViewDidEndDecelerating:(UIScrollView *)scrollView
{
    [self scrollViewStopped:scrollView];
}

- (void)scrollViewStopped:(UIScrollView *)scrollView
{
    if (self.updateDataOnScrollingEnded) {
         [self updateData];
         self.updateDataOnScrollingEnded = NO;
     }
}

我的猜测是collectionView内部某处对突出显示单元格的indexPath的引用很弱,并且调用reload将释放该indexPath。当 collectionView 然后尝试取消突出显示单元格时,它会崩溃。

编辑:

正如下面评论中提到的,这个“解决方案”有一些缺陷。在进一步调查该问题时,在我的情况下,问题似乎与在拖动集合视图期间在主线程上排队的多个 reloadData 调用有关。当只有一个 reloadData 调用时,一切都很好,但只要有不止一个 - 崩溃!

因为我的 collectionView 中总是只有一个部分,所以我将 reloadData 调用替换为

reloadSections:[NSIndexSet indexSetWithIndex:0]

但是,这会导致单元格快速淡出并再次淡入,我使用以下方法避免了这种情况(作为集合视图上的类别可能会更好)

- (void)reloadCollectionView:(UICollectionView *)collectionView animated:(BOOL)animated
{
    [UIView setAnimationsEnabled:animated];
    [collectionView performBatchUpdates:^{
        [collectionView reloadSections:[NSIndexSet indexSetWithIndex:0]];
    } completion:^(BOOL finished) {
        [UIView setAnimationsEnabled:YES];
    }];
}

到目前为止,这对我来说效果很好,它还允许在滚动时实际更新数据。

于 2013-11-26T18:30:58.753 回答
1

我遇到了这个问题,虽然崩溃略有不同。通过推迟任何 reloadData 直到突出显示被清除来修复。虽然 toostn 的建议可以解决问题,但在滚动时重新加载数据很有用,但在突出显示时没有多大意义 - 因为您的手指放在单元格上。

实现以下 UICollectionViewDelegate 方法:

- (BOOL)collectionView:(UICollectionView *)collectionView shouldHighlightItemAtIndexPath:(NSIndexPath *)indexPath {
    self.allowReload = NO;
    return YES;
}


- (void)collectionView:(UICollectionView *)collectionView didUnhighlightItemAtIndexPath:(NSIndexPath *)indexPath {
    self.allowReload = YES;
    [self reloadIfNecessary]; // calls reloadData if it is necessary to do so!
}
于 2014-04-08T12:34:18.250 回答
1

仅识别这段代码后不确定。但是由于崩溃信号(SIGSEGV)似乎是由于内存泄漏。您只需转到您的 Xcode 设置并在 Edit Scheme jsut 中启用 Zombie 选项,然后尝试重现您的崩溃。它将在 Xcode 的控制台中显示方法的控制器类名称或任何与崩溃相关的信息。并且也只是尝试在下面修改你的条件: -

- (void)setHighlighted:(BOOL)highlighted {

     //just comment this line or write this line to the below and check
     //[super setHighlighted:highlighted];
    if (highlighted) {
        self.alpha = 0.8;
    } else {
        self.alpha = 1.0;
    }
    [super setHighlighted:highlighted];
}
于 2013-10-10T15:14:06.187 回答
0

我在一个集合视图中也遇到了这个崩溃_unhighlightAllItems,我使用了一个长按识别器来更改单元格的状态(但不是它们的编号),然后调用[collectionView reloadData]. 就我而言,@toostn(使用performBatchUpdates)的解决方案效果很好。

我还发现使用reloadItemsAtIndexPaths:而不是reloadData也可以避免崩溃。

于 2014-06-11T22:04:27.040 回答