上次由于业务需求,我做了一个框架,是关于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);