ios——自定义tableviewcell左滑button

本文介绍了一种简单的实现自定义UITableViewCell左滑显示按钮的方法,包括删除和测试按钮的设置及响应事件处理。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

       其实自定义tableviewcell左滑的button代码十分简单,一个方法就能搞定~,在需要用到左滑button的时候加入下面的方法即可使用:

-(NSArray *)tableView:(UITableView *)tableView editActionsForRowAtIndexPath:(NSIndexPath *)indexPath{
    UITableViewRowAction *deleteRoWAction = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@" 删除" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {//title可自已定义
        //这里面写button点击之后的事件
        [self.dataArray removeObjectAtIndex:indexPath.row];//这里的dataArray是可变数组,滑动删除的时候,需要删除数组中的元素
        [tableView deleteRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationFade];
    }];
    //deleteRoWAction.backgroundColor = [UIColor blueColor]; 定义button的颜色,默认是红色的
    
    UITableViewRowAction *test = [UITableViewRowAction rowActionWithStyle:UITableViewRowActionStyleDestructive title:@" test" handler:^(UITableViewRowAction *action, NSIndexPath *indexPath) {//title可自已定义
        NSLog(@"点击了test");
    }];
    test.backgroundColor = [UIColor blueColor];
    return @[deleteRoWAction,test];//最后返回这俩个RowAction 的数组
}

效果如图所示:


图虽然丑了点,但是效果出来了,如果需要的话只需要加点优化就可以了~

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值