美文网首页
数组嵌套数组内部数组数据替换

数组嵌套数组内部数组数据替换

作者: 倒着游的鱼 | 来源:发表于2023-04-13 11:29 被阅读0次
    //获取嵌套数组内模型
    DataModel *seleModel = self.modelsArray[indexPath.section][indexPath.row];
    
    //获取内部数组
     NSMutableArray * arr =   [NSMutableArray arrayWithArray:self.modelsArray[indexPath.section]];
    
    //删除内部可变数组的行
     //  [arr removeObjectAtIndex:indexPath.row];
     
    //替换内部可变数组的行
     [arr replaceObjectAtIndex:indexPath.row withObject:seleModel];
    
    //重新赋值
       self.modelsArray[indexPath.section] =  arr;
    

    end

    相关文章

      网友评论

          本文标题:数组嵌套数组内部数组数据替换

          本文链接:https://www.haomeiwen.com/subject/liuaddtx.html