ios - 即使锁定后线程崩溃 <__NSArrayM : 0x7f881a6b1900> was mutated while being enumerated?

标签 ios objective-c thread-safety nsmutablearray nslock

这是我的代码,我正在根据我的条件删除多个值

-(void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
    PhotoCan *cell=[collectionView cellForItemAtIndexPath:indexPath];
    UIImage *getimg=[dicPhotoStore objectForKey:@(indexPath.row)];
    BOOL integer=[dic objectForKey:@(indexPath.row)];
    if(integer)
    {

        for(id img in arrFinalStore)
        {
            if(img==getimg)
            {


                NSLock *arrayLock = [[NSLock alloc] init];
                [arrayLock lock];
                    [arrFinalStore removeObject:img];
                NSLog(@"crash inside");
                [arrayLock unlock];

            }

        }
        @synchronized(self)
        {
            [dic removeObjectForKey:@(indexPath.row)];
            [dicPhotoStore removeObjectForKey:@(indexPath.row)];
        }
        NSLog(@"crashoutside");
        NSLog(@"inside false");
    }
    else
    {
        [dicPhotoStore setObject:cell.imgView.image forKey:@(indexPath.row)];
        [arrFinalStore addObject:cell.imgView.image];
        [dic setObject:@"1" forKey:@(indexPath.row)];
    }
    [_collection reloadData];
}

我知道在尝试找出这个错误时出了点问题,请帮助我解决这个问题。

这是错误:

*** Terminating app due to uncaught exception 'NSGenericException', reason: '*** Collection <__NSArrayM: 0x7f881a6b1900> was mutated while being enumerated.'
*** First throw call stack:
(
    0   CoreFoundation                      0x000000010299fe65 __exceptionPreprocess + 165
    1   libobjc.A.dylib                     0x0000000102418deb objc_exception_throw + 48
    2   CoreFoundation                      0x000000010299f7c4 __NSFastEnumerationMutationHandler + 132
    3   PhotoCollageCanvas                  0x000000010056878f -[photoAssets collectionView:didSelectItemAtIndexPath:] + 767
    4   UIKit                               0x0000000103afb4a7 -[UICollectionView _selectItemAtIndexPath:animated:scrollPosition:notifyDelegate:] + 701
    5   UIKit                               0x0000000103b1d049 -[UICollectionView touchesEnded:withEvent:] + 574
    6   UIKit                               0x00000001034b6ef7 forwardTouchMethod + 349
    7   UIKit                               0x00000001034b6fc0 -[UIResponder touchesEnded:withEvent:] + 49
    8   UIKit                               0x00000001034b6ef7 forwardTouchMethod + 349
    9   UIKit                               0x00000001034b6fc0 -[UIResponder touchesEnded:withEvent:] + 49
    10  UIKit                               0x0000000103783ede _UIGestureRecognizerUpdate + 10279
    11  UIKit                               0x0000000103319f8a -[UIWindow _sendGesturesForEvent:] + 1137
    12  UIKit                               0x000000010331b1c0 -[UIWindow sendEvent:] + 849
    13  UIKit                               0x00000001032c9b66 -[UIApplication sendEvent:] + 263
    14  UIKit                               0x00000001032a3d97 _UIApplicationHandleEventQueue + 6844
    15  CoreFoundation                      0x00000001028cba31 __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 17
    16  CoreFoundation                      0x00000001028c195c __CFRunLoopDoSources0 + 556
    17  CoreFoundation                      0x00000001028c0e13 __CFRunLoopRun + 867
    18  CoreFoundation                      0x00000001028c0828 CFRunLoopRunSpecific + 488
    19  GraphicsServices                    0x00000001058d8ad2 GSEventRunModal + 161
    20  UIKit                               0x00000001032a9610 UIApplicationMain + 171
    21  Photo                               0x0000000100566a5f main + 111
    22  libdyld.dylib                       0x000000010697b92d start + 1
    23  ???                                 0x0000000000000001 0x0 + 1
)

最佳答案

你认为那个锁会做什么?它完全什么都不做。你创建了一个锁,锁定它,解锁它。由于该代码是唯一可以访问锁的代码,因此该锁不可能阻止任何人做任何事情。

而且它无论如何也解决不了你的问题。有人正在枚举那个数组。 任何修改它的尝试,正如你正在尝试的那样,当它被枚举时,都会崩溃。

您的代码是(删除了行)

    for(id img in arrFinalStore)
    {
        [arrFinalStore removeObject:img];
    }

该代码绝对会崩溃,没有什么可以阻止它崩溃。迭代时不能从数组中删除对象。

关于ios - 即使锁定后线程崩溃 <__NSArrayM : 0x7f881a6b1900> was mutated while being enumerated?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37050813/

相关文章:

ios - NSMutableArray 只有最后一个对象的副本

objective-c - 二阶 IIR 滤波器,巴特沃斯带通 (EQ) 的系数?

.net - Debug.WriteLine()线程安全吗?

objective-c - 重写为 NSDocument 加载多个文件的方法

ios - 如何获取 iPhone 中被遮盖的图像部分

asp.net - 缓解 Web 服务器上的 RsaCryptoServiceProvider 线程安全问题

c# - "relevant"是XmlWriterTraceListener的非线程安全性如何?

ios - 如何在 NSOperationQueue 完成之前阻止 NSOperation?

ios - 处理 Collection View Cell 中元素的手势事件

ios - (AVCaptureDevice) 为什么我无法获取我的相机设备