删除NSMutableArray中的二维数组

 // 删除模型数据

        [self.mutableArr[indexPath.section] removeObjectAtIndex:indexPath.row];

        

        //删除UI(刷新数据,UI)

        [self.dmSelectTableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationTop];

原文地址:https://www.cnblogs.com/yyj900165/p/4691978.html