- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
[tableView deselectRowAtIndexPath:indexPath animated:NO];
//左边会出现那个减号
tableView.editing = YES;
[_tag insertObject:@"*项目1" atIndex:indexPath.row + 1];
NSIndexPath *addIndexPath = [NSIndexPath indexPathForRow:indexPath.row + 1 inSection:0];
//在tableView中添加一行cell
[tableView insertRowsAtIndexPaths:@[addIndexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
}
- (void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath {
//在数组中删除一个
[_tag removeObjectAtIndex:indexPath.row];
//在tableView中删除一行
[tableView deleteRowsAtIndexPaths:@[indexPath] withRowAnimation:UITableViewRowAnimationFade];
NSLog(@"---->%ld", indexPath.row);
}
删除和添加tableView的cell
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 在cell类的.h中添加 在cell类的.m中Button的点击方法中添加 然后在控制器的UITableViewD...
- 效果图 : 数据来源 : 主要代码 解析: 1.点击每组的代理 -- 控制器中实现 pragma mark - E...
- 当我们在一个自定义的tableView Cell上添加一个UIButton按钮时,要想点击按钮时获取对应的inde...
- 前言 在iOS开发中,我们最常使用的UIKit控件之一就是UITableView,默认情况下我们可以通过UITab...