解體提示:Terminating app due to uncaught exception 'NSGenericException', reason: '*** Collection <CALayerArray: 0x14df0bd0> was mutated while being enumerated.'
當順序呈現這個提示的時分,是由於你一邊便當數組,又同時修正這個數組外面的內容,招致解體,網上的辦法如下:
NSMutableArray * arrayTemp = xxx;
NSArray * array = [NSArray arrayWithArray: arrayTemp];
for (NSDictionary * dic in array) {
if (condition){
[arrayTemp removeObject:dic];
}
}
這種辦法就是在定義一個如出一轍的數組,便當數組A然後操作數組B
明天終於找到了一個更快接的刪除數組外面的內容以及修正數組外面的內容的辦法:
NSMutableArray *tempArray = [[NSMutableArray alloc]initWithObjects:@"12",@"23",@"34",@"45",@"56", nil];
[tempArray enumerateObjectsUsingBlock:^(id obj, NSUInteger idx, BOOL *stop) {
if ([obj isEqualToString:@"34"]) {
*stop = YES;
if (*stop == YES) {
[tempArray replaceObjectAtIndex:idx withObject:@"3333333"];
}
}
if (*stop) {
NSLog(@"array is %@",tempArray);
}
}];
應用block來操作,依據查閱材料,發現block便當比for便當快20%左右,這個的原理是這樣的:
找到契合的條件之後,暫停遍歷,然後修正數組的內容
【iOS之處理解體Collection <__NSArrayM: 0xb550c30> was mutated while being enumerated.】的相關資料介紹到這裡,希望對您有所幫助! 提示:不會對讀者因本文所帶來的任何損失負責。如果您支持就請把本站添加至收藏夾哦!