关于tableView实现竖排侧滑按钮按钮----《二》

       上次由于业务需求,我做了一个框架,是关于tableView侧滑出现竖排按钮的功能的。但这个框架目前还存在天然的缺陷,因为该框架是通过遍历系统控件,获得对应的子控件,然后进行替换,并通过代理,实现控件点击反馈。就存在苹果持续更新系统底层代码,从而使代码失效的可能性。所以,为了一劳永逸的解决这个框架的问题,我决定走上另外一条实现的道路。

       就是通过自定义,来实现tableView侧滑出现竖排按钮功能。

       代码地址:https://github.com/lrbtony/RBSwipeTableViewCell

       代码说明:

RBSwipeTableViewCell
示例图片

本框架使用自定义cell来实现系统的左滑竖排显示按钮,可自定义宽度,背景色,按钮的样式

使用方法: 直接拖拽RBSwipeTableViewCell.h和.m文件到项目,可以直接使用或者继承使用

关键代码:

RBSwipeTableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:@"Cell1"];
//可用系统自带按钮,也可以用自定义按钮
UIButton *btn1;
NSString * tmpStr = @"查询银行\n变更申请";
btn1 = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, 100, 80)];
btn1.titleLabel.numberOfLines = 0;
btn1.backgroundColor = [self colorWithRGB:0x409bd8];
btn1.tag = 0;
[btn1 setTitle:tmpStr forState:UIControlStateNormal];

UIButton *btn2;
NSString * tmpStr1 = @"赎回/续期";
btn2 = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, 100, 80)];
btn2.titleLabel.numberOfLines = 0;
[btn2 setTitle:tmpStr1 forState:UIControlStateNormal];
btn2.tag = 1;
btn2.backgroundColor = [self colorWithRGB:0xf48500];
NSMutableArray *tmpArr = [[NSMutableArray alloc]initWithCapacity:2];
if(btn1 != nil) {
    [tmpArr addObject:btn1];
}
if(btn2 != nil) {
    [tmpArr addObject:btn2];
}

if (cell == nil) {
    cell = [[RBSwipeTableViewCell alloc] initWithStyle:UITableViewCellStyleDefault
                                            reuseIdentifier:@"Cell1"
                                                   withBtns:nil
                                                  tableView:tableView
                                              cellIndexPath:indexPath];
}
cell.delegate = self;//通过代理方法实现点击反馈
cell.rightBtnArr = tmpArr;
//控制拖拽动作
//    cell.panGesture.enabled = indexPath.row % 2;
//可继承cell类,并重写initWithStyle方法制定子控件
UILabel *titleLabel = [[UILabel alloc]init];
titleLabel.text = [NSString stringWithFormat:@"第%zd行",indexPath.row];
/*关键点:在RBContentView添加子控件*/
[cell.RBContentView addSubview:titleLabel];
titleLabel.frame = CGRectMake(100, 60, 50, 30);

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值