iOS二维数组的删除
2019-07-12 本文已影响0人
魔力双鱼
tableView中多行多列中的数据删除。
// 正确代码
NSMutableArray * tempArr = [[NSMutableArray alloc] init];
tempArr = [self.dataArr[section] mutableCopy];
[tempArr removeObjectAtIndex:row];
[self.dataArr replaceObjectAtIndex:section withObject:tempArr];