博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
二维数组左滑删除某一行
阅读量:6457 次
发布时间:2019-06-23

本文共 1146 字,大约阅读时间需要 3 分钟。

#pragma mark 编辑操作(删除或添加)//实现了此方法向左滑动就会显示删除(或添加)图标-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{        NTContactGroup * group = _contacts[indexPath.section];    NTContact * contact = group.contacts[indexPath.row];    if (editingStyle == UITableViewCellEditingStyleDelete) {        [group.contacts removeObject:contact];        [tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationBottom];        if (group.contacts.count == 0) {            [_contacts removeObject:group];            [tableView reloadData];        }    }else if (editingStyle == UITableViewCellEditingStyleInsert){                NTContact * addContact = [[NTContact alloc]init];        addContact.firstName = @"Guan";        addContact.lastName = @"yu";        addContact.mobileNumber = @"12345678901";        [group.contacts insertObject:addContact atIndex:indexPath.row];        [tableView insertRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationBottom];    }}

实现二维数组的删除某一行

转载于:https://www.cnblogs.com/ritian/p/5495635.html

你可能感兴趣的文章
我的友情链接
查看>>
详解TCP三次握手
查看>>
mysql驱动取别名报Column ×× not found 解决方案 -- T1 Holly
查看>>
在一个字符串里面怎么找出最长回文子序列长度
查看>>
wget关闭进度输出
查看>>
我的友情链接
查看>>
本次操作由于这台计算机的限制而被取消
查看>>
用鼠标左键绘制折线,利用鼠标中键或右键终止绘制
查看>>
Math-Model(四)长杆在太阳下的影长度处理方法
查看>>
写给未来的你
查看>>
如何实现基于 Lodop 的 连打、三联二等份打印
查看>>
python2.7.5升级到3.5.0
查看>>
常用电脑的人保护眼睛的方法
查看>>
Centos 6.5 优化 一些基础优化和安全设置
查看>>
如何部署最新版本的WordPress
查看>>
创建可以在Interface Builder中渲染的自定义视图
查看>>
戴维营教育最新项目实战开发视频出炉:Swift、XMPP、SpriteKi...
查看>>
zabbix网络发现规则配置实战/详解
查看>>
Apache Griffin 入门指南
查看>>
10年以后,.net终于成功了!
查看>>