- (NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath NS_AVAILABLE_IOS(8_0) {
UITableViewRowAction *dele = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"删除" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
NSLog(@"点击了删除");
}];
UITableViewRowAction *top = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"操作1" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
NSLog(@"操作1");
}];
UITableViewRowAction *le = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"操作2" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
NSLog(@"操作2");
}];
UITableViewRowAction *tp = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@"操作3" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {
NSLog(@"操作3");
}];
dele.backgroundColor = [UIColor redColor];
top.backgroundColor = [UIColor grayColor];
le.backgroundColor = [UIColor orangeColor];
tp.backgroundColor = [UIColor blueColor];
return @[dele, le, tp, top];
}
-(void)tableView:(UITableView *)tableView commitEditingStyle:(UITableViewCellEditingStyle)editingStyle forRowAtIndexPath:(NSIndexPath *)indexPath{
}
IOS UITabelView cell添加多选按钮(ios8)
最后编辑于 :
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 第一种方式: -(BOOL)tableView:(UITableView *)tableView canEditR...
- tableview实现类似购物车商品多选按钮选中状态不会被刷新掉,三种方法简单的实现商品多选,当用户选中商品的时候...
- 1.需求:cell上一排按钮,如下图所示: 问题:cell 上的button点击事件进行区分开。 2.在cell添...
- 单选的效果大概就是这样,如果想设置右边的accessoryType属性,更改对应的UITableViewCellA...