tableView中多行多列中的数据删除。
// 正确代码
NSMutableArray * tempArr = [[NSMutableArray alloc] init];
tempArr = [self.dataArr[section] mutableCopy];
[tempArr removeObjectAtIndex:row];
[self.dataArr replaceObjectAtIndex:section withObject:tempArr];
tableView中多行多列中的数据删除。
// 正确代码
NSMutableArray * tempArr = [[NSMutableArray alloc] init];
tempArr = [self.dataArr[section] mutableCopy];
[tempArr removeObjectAtIndex:row];
[self.dataArr replaceObjectAtIndex:section withObject:tempArr];
本文标题:iOS二维数组的删除
本文链接:https://www.haomeiwen.com/subject/kyblcctx.html
网友评论