集合< __ NSArrayM>在被列举时发生了变异。

时间:2017-06-20 09:07:09

标签: ios objective-c arrays crash nsmutablearray

Application Specific Information:
*** Terminating app due to uncaught exception 'NSGenericException', reason: '*** Collection <__NSArrayM: 0x17204b070> was mutated while being enumerated.'
Last Exception Backtrace:
0   CoreFoundation                      0x0000000186acefe0 __exceptionPreprocess + 124
1   libobjc.A.dylib                     0x0000000185530538 objc_exception_throw + 56
2   CoreFoundation                      0x0000000186acea30 __NSFastEnumerationMutationHandler + 128
3   UIKit                               0x000000018cc22f04 -[UITextInteractionAssistant(UITextInteractionAssistant_Internal) clearGestureRecognizers:] + 220
4   UIKit                               0x000000018cc22d78 -[UITextInteractionAssistant(UITextInteractionAssistant_Internal) setGestureRecognizers] + 88
5   UIKit                               0x000000018d1d1d38 -[UIGestureRecognizerTarget _sendActionWithGestureRecognizer:] + 64
6   UIKit                               0x000000018d1d556c _UIGestureRecognizerSendTargetActions + 124
7   UIKit                               0x000000018cd8f470 _UIGestureRecognizerSendActions + 252
8   UIKit                               0x000000018cc31380 -[UIGestureRecognizer _updateGestureWithEvent:buttonEvent:] + 720
9   UIKit                               0x000000018d1c5810 _UIGestureEnvironmentUpdate + 988
10  UIKit                               0x000000018d1c53e0 -[UIGestureEnvironment _deliverEvent:toGestureRecognizers:usingBlock:] + 404
11  UIKit                               0x000000018d1c468c -[UIGestureEnvironment _updateGesturesForEvent:window:] + 268
12  UIKit                               0x000000018cc2f70c -[UIWindow sendEvent:] + 3164
13  UIKit                               0x000000018cc0033c -[UIApplication sendEvent:] + 340
14  UIKit                               0x000000018d3fa014 __dispatchPreprocessedEventFromEventQueue + 2400
15  UIKit                               0x000000018d3f4770 __handleEventQueue + 4268
16  UIKit                               0x000000018d3f4b9c __handleHIDEventFetcherDrain + 148
17  CoreFoundation                      0x0000000186a7d42c __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE0_PERFORM_FUNCTION__ + 24
18  CoreFoundation                      0x0000000186a7cd9c __CFRunLoopDoSources0 + 540
19  CoreFoundation                      0x0000000186a7a9a8 __CFRunLoopRun + 744
20  CoreFoundation                      0x00000001869aada4 CFRunLoopRunSpecific + 424
21  GraphicsServices                    0x0000000188414074 GSEventRunModal + 100
22  UIKit                               0x000000018cc65058 UIApplicationMain + 208
23  MyApp                            0x000000010001d0ac main (main.m:16)
24  libdyld.dylib                       0x00000001859b959c start + 4

2 个答案:

答案 0 :(得分:4)

此错误有以下可能原因:

第一个原因

您可能正在尝试使用(内部)For Each Loop更新或删除数组中的元素。

  • 不要更新或删除For Each Loop中的元素。

  • 如果您不想使用数组进行数据操作操作,请使用normal for循环,例如:

    int i
    for (i=0; i < array.count; i++) {
       // update or remove operation
    }
    

第二个原因

您正在尝试从非可变数组中修改(更新或删除)元素。您的错误消息表明您正在使用Objective-C编程语言。

在objective-C中,有两种集合:Mutable和non-mutable。

  • NSArray是非可变类型的集合,而
  • NSMutableArray是可变类型的集合

使用NSMutableArray使用数组执行数据操作(更新或删除元素)操作。

答案 1 :(得分:0)

有时,这种情况发生在多线程情况下。当一个线程正在读取一个数组时,另一个线程正在尝试修改它。

在react-native组件中,我有一个本机UI组件,以及一个方法。 我没有指定该方法将运行的线程。所以这个问题发生了。添加此代码后,一切正常。

- (dispatch_queue_t)methodQueue {
  return dispatch_get_main_queue();
}