博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
iOS Swipe Tableviewcell(左右滑动出现按钮)
阅读量:5077 次
发布时间:2019-06-12

本文共 8134 字,大约阅读时间需要 27 分钟。

1.背景                                                                      

     看到QQ的左右滑动Tableviewcell时可以出现多个菜单,觉得很高大上,因为没这种需求,

也只是需要一个删除按钮,这个系统已经帮我们实现了,只需要实现几个代理就可以,做出左划

出现删除按钮,这个我就不再这里说了,Google上你应该很容易实现,这里要讲的是如何实现

多个按钮的左右滑动的实现。可以获取点击的是哪个按钮。

2.效果图

    

左右侧可以分开设置,即可以同时为图片,也可以一边图片一边文字。

3.实现原理                                                                      

  在cell里面按钮和手势,根据手势来控制视图的移动和显示。

4.自定义cell的核心代码                                                      

.h文件

#import 
#import "menuview.h"typedef enum { CellStateLeft, CellStateRight, CellStateCenter, } CellState;@protocol MyTableViewCellDelegate
- (void) btnMenuClick:(NSInteger)index isRightMenu:(NSInteger) isright;@end@interface myTableViewCell : UITableViewCell
{ CellState state;}@property (nonatomic,strong) id
myTableViewCellDelegate;- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier;- (void) initLeftMenu:(NSArray *) btnLeft bagcolor:(NSArray *) leftCol width:(NSInteger)leftWid height:(NSInteger) righthig isText:(BOOL) flag;- (void) initRightMenu:(NSArray *) btnRight bagcolor:(NSArray *) rightCol width:(NSInteger)rightWid height:(NSInteger) righthig isText:(BOOL) flag;@end
View Code

.m文件

////  myTableViewCell.m//  Delecttable////  Created by apple on 14/12/12.//  Copyright (c) 2014年 Reasonable. All rights reserved.//#import "myTableViewCell.h"@implementation myTableViewCell{    NSArray * rightconn;    NSArray * rightcolor;    NSInteger  rightwidth;       BOOL rightIsText;    BOOL hasRightMenu;    NSArray * leftconn;    NSArray * leftcolor;    NSInteger  leftwidth;    BOOL leftIsText;    BOOL hasLeftMenu;        menuview * leftview;    menuview * rightView;        NSInteger  height;}- (void) initSubControl{}- (id)initWithStyle:(UITableViewCellStyle)style reuseIdentifier:(NSString *)reuseIdentifier{    self = [super initWithStyle:style reuseIdentifier:reuseIdentifier];    if (self) {        hasRightMenu=NO;        hasLeftMenu=NO;        state=CellStateCenter;        [self initControl];    }        return self;}- (void) initRightMenu:(NSArray *) btnRight bagcolor:(NSArray *) rightCol width:(NSInteger)rightWid height:(NSInteger) righthig isText:(BOOL) flag{    if ((btnRight.count>0 && btnRight.count==rightCol.count && flag) || ( btnRight.count>0 &&!flag)) {        rightconn=btnRight;        rightcolor=rightCol;        rightwidth=[self GetMenuWidth:rightWid isRight:YES];        rightIsText=flag;        state=CellStateCenter;        hasRightMenu=YES;        height=righthig;         [self initControl];    }}- (void) initLeftMenu:(NSArray *) btnLeft bagcolor:(NSArray *) leftCol width:(NSInteger)leftWid height:(NSInteger) righthig isText:(BOOL) flag{    if ((btnLeft.count>0 && btnLeft.count==leftCol.count && flag) || ( btnLeft.count>0 &&!flag)) {        leftconn=btnLeft;        leftcolor=leftCol;        leftwidth=[self GetMenuWidth:leftWid isRight:YES];        leftIsText=flag;        state=CellStateCenter;         hasLeftMenu=YES;           height=righthig;        [self initControl];    }}-(NSInteger) GetMenuWidth:(NSInteger)fucwidth isRight:(BOOL) flag{    NSInteger totalwidth=flag?rightconn.count*rightwidth:leftconn.count * leftwidth;    NSInteger muennumber=flag?rightconn.count:leftconn.count;    if (totalwidth>self.frame.size.width) {        return (self.frame.size.width/muennumber);    }else{        return fucwidth;    }  }- (void) initControl{    if (hasRightMenu) {        rightView=[[menuview alloc]initWithFrame:CGRectMake(self.frame.size.width-(rightwidth*rightconn.count), 0, rightwidth*rightconn.count,height)];        [rightView initMenu:rightconn bagcolor:rightcolor width:rightwidth isText:rightIsText];        rightView.menuviewDelegate=self;        rightView.hidden=YES;        [self addSubview:rightView];            }    if (hasLeftMenu) {        leftview=[[menuview alloc]initWithFrame:CGRectMake(0, 0, leftwidth*leftconn.count,height)];        [leftview initMenu:leftconn bagcolor:leftcolor width:leftwidth isText:leftIsText];        leftview.menuviewDelegate=self;        leftview.hidden=YES;        [self addSubview:leftview];    }   self.userInteractionEnabled=YES;   self.contentView.userInteractionEnabled=YES;    self.contentView.backgroundColor=[UIColor whiteColor];        UISwipeGestureRecognizer * sc1=[[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipe:)];    sc1.delegate=self;    [sc1 setDirection:UISwipeGestureRecognizerDirectionLeft];    UISwipeGestureRecognizer * sc2=[[UISwipeGestureRecognizer alloc] initWithTarget:self action:@selector(handleSwipe:)];    sc2.delegate=self;    [sc2 setDirection:UISwipeGestureRecognizerDirectionRight];    [self.contentView addGestureRecognizer:sc1];    [self.contentView addGestureRecognizer:sc2];    [self bringSubviewToFront:self.contentView];    }- (void) btnClick:(NSInteger)index{    [self.myTableViewCellDelegate  btnMenuClick:index isRightMenu:state]; }-(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch{    // 判断是不是UIButton的类    if ([touch.view isKindOfClass:[UIButton class]])    {        return NO;    }    else    {        return YES;    }}-(void)handleSwipe:(UISwipeGestureRecognizer *)gesture {                  switch (gesture.direction) {            case UISwipeGestureRecognizerDirectionUp:                NSLog(@"%@",@"up");                break;                            case UISwipeGestureRecognizerDirectionDown:                                                break;                            case UISwipeGestureRecognizerDirectionLeft:            {                if (state==CellStateCenter) {                                    rightView.hidden=NO;                    CGRect  rct=CGRectMake( self.contentView.frame.origin.x ,  self.contentView.frame.origin.y,                                           self.contentView.frame.size.width, self.contentView.frame.size.height);                    rct.origin.x=rct.origin.x-rightwidth*[rightconn count];                    self.contentView.frame=rct;                    state=CellStateRight;                }                                                if (state==CellStateLeft) {                    leftview.hidden=YES;                    CGRect  rct=CGRectMake( self.contentView.frame.origin.x ,  self.contentView.frame.origin.y,                                           self.contentView.frame.size.width, self.contentView.frame.size.height);                    rct.origin.x=rct.origin.x-leftwidth*[leftconn count];                    self.contentView.frame=rct;                    state=CellStateCenter;                }                                            }                break;            case UISwipeGestureRecognizerDirectionRight:            {                                if (state==CellStateCenter) {                    leftview.hidden=NO;                    CGRect  rct=CGRectMake( self.contentView.frame.origin.x ,  self.contentView.frame.origin.y,                                           self.contentView.frame.size.width, self.contentView.frame.size.height);                    rct.origin.x=rct.origin.x+leftwidth*[leftconn count];                    self.contentView.frame=rct;                    state=CellStateLeft;                }                                if (state==CellStateRight) {                    rightView.hidden=YES;                   CGRect  rct=CGRectMake( self.contentView.frame.origin.x ,  self.contentView.frame.origin.y,                                       self.contentView.frame.size.width, self.contentView.frame.size.height);                  rct.origin.x=rct.origin.x+rightwidth*[rightconn count];                   self.contentView.frame=rct;                    state=CellStateCenter;                }                           }                break;                            default:                break;        }    }- (void) RightViewSelectindex:(UIButton *) btn{    NSLog(@"%ld",btn.tag);}- (void)setSelected:(BOOL)selected animated:(BOOL)animated {    [super setSelected:selected animated:animated];    // Configure the view for the selected state}@end
View Code

5.说明                                                                            

  开发环境是Xcode 6.1 SDK8.1 未测试其他版本的效果,如果需要测试dome留下邮箱,我会发给你。

欢迎转载。

 

转载于:https://www.cnblogs.com/try-wyh/p/4161500.html

你可能感兴趣的文章
正则表达式(进阶篇)
查看>>
无人值守安装linux系统
查看>>
【传道】中国首部淘宝卖家演讲公开课:农业本该如此
查看>>
jQuery应用 代码片段
查看>>
MVC+Servlet+mysql+jsp读取数据库信息
查看>>
黑马程序员——2 注释
查看>>
用OGRE1.74搭建游戏框架(三)--加入人物控制和场景
查看>>
转化课-计算机基础及上网过程
查看>>
android dialog使用自定义布局 设置窗体大小位置
查看>>
ionic2+ 基础
查看>>
互联网模式下我们更加应该“专注”
查看>>
myeclipse集成jdk、tomcat8、maven、svn
查看>>
查询消除重复行
查看>>
Win 10 文件浏览器无法打开
查看>>
HDU 1212 Big Number(C++ 大数取模)(java 大数类运用)
查看>>
-bash: xx: command not found 在有yum源情况下处理
查看>>
[leetcode]Minimum Path Sum
查看>>
内存管理 浅析 内存管理/内存优化技巧
查看>>
hiho1079 线段树区间改动离散化
查看>>
【BZOJ 5222】[Lydsy2017省队十连测]怪题
查看>>