PopListView弹出列表

需求如下:

屏幕快照 2019-03-12 上午10.48.47.png

点击右导航按钮弹出列表菜单,点击菜单中的任意事件,跳转或者响应不同事件。

具体实现

@interface SCPopListView : UIView

@property (nonatomic, strong) UIColor* thumbColor;
@property (nonatomic, strong) UIColor* textColor;
@property (nonatomic, assign) CGFloat maxWidth;
@property (nonatomic, assign) CGFloat bottomSacping;
@property (nonatomic, assign) UITableViewCellSelectionStyle cellSelectionStyle;
@property (nonatomic, assign) BOOL isCornerRadius;

@property (nonatomic, strong) NSArray *rightViewArr;
@property (nonatomic, strong) NSArray *titleArr;
@property (nonatomic, strong) NSArray *imgArr;
@property (nonatomic, strong) NSArray *placeholderArr;
@property (nonatomic, copy) void (^selectBlock)(NSInteger index);
@end

@interface SCPopOverListView : UIView
@property (nonatomic, strong) SCPopListView *listView;

- (id)initWithTitles:(NSArray*)titleArr images:(NSArray*)imgArr superView:(UIView*)superView maxWidth:(CGFloat)maxWidth andisCornerRadius:(BOOL)isCornerRadius;

- (void)showPopList;
- (void)hidePopList;
@end

.m实现部分

@interface SCPopListView ()<UITableViewDataSource, UITableViewDelegate>
{
    NSInteger _rowNum;
    
    UIView *thumb;
}
@property (nonatomic, strong) UITableView *tableView;
@end

@implementation SCPopListView

- (void)setBackgroundColor:(UIColor *)backgroundColor{
    [super setBackgroundColor:backgroundColor];
}

- (id)initWithFrame:(CGRect)frame {
    self = [super initWithFrame:frame];
    if (self) {
        _thumbColor = [UIColor whiteColor];//这个是那个小三角
        _textColor = [UIColor SCTextBlackColor];
        _bottomSacping = 0;
        _cellSelectionStyle = UITableViewCellSelectionStyleDefault;
        
//创建一个三角形
        thumb = [[UIView alloc] initWithFrame:CGRectMake(frame.size.width - 20, 0, 10, 5)];
        thumb.backgroundColor = _thumbColor;
        [self addSubview:thumb];
        UIBezierPath *path = [UIBezierPath bezierPath];
//设置初始线段的起点
        [path moveToPoint:CGPointMake(0, thumb.height)];
        [path addLineToPoint:CGPointMake(thumb.width / 2.0f, 0)];
        [path addLineToPoint:CGPointMake(thumb.width, thumb.height)];
        [path closePath];
        CAShapeLayer *shape = [[CAShapeLayer alloc] init];
        [shape setPath:path.CGPath];
        thumb.layer.mask = shape;
        //背景图片
        UIImageView *backImage = [[UIImageView alloc]initWithFrame:CGRectMake(0, 0, frame.size.width, frame.size.height)];
        backImage.autoresizingMask = UIViewAutoresizingFlexibleHeight;
        backImage.image = [[UIImage imageNamed:@"fmp_toppop_background"] stretchableImageWithLeftCapWidth:20 topCapHeight:30];
        [self addSubview:backImage];
        
        _tableView = [[UITableView alloc] initWithFrame:CGRectMake(25, 8, frame.size.width - 50, frame.size.height - 5) style:UITableViewStylePlain];
        _tableView.backgroundColor = [UIColor clearColor];
        _tableView.layer.cornerRadius = 2;
        _tableView.layer.masksToBounds = YES;
        _tableView.separatorStyle = UITableViewCellSeparatorStyleNone;
        _tableView.scrollEnabled = NO;
        _tableView.delegate = self;
        _tableView.dataSource = self;
        [self addSubview:_tableView];
    }
    return self;
}

//设置三角的颜色
- (void)setThumbColor:(UIColor *)thumbColor{
    _thumbColor = thumbColor;
    thumb.backgroundColor = _thumbColor;
    //    _tableView.backgroundColor = _thumbColor;
}

- (void)setTextColor:(UIColor *)textColor{
    _textColor = textColor;
    [_tableView reloadData];
}

- (void)setRightViewArr:(NSArray *)rightViewArr{
    _rightViewArr = rightViewArr;
    [_tableView reloadData];
}

- (void)setTitleArr:(NSArray *)titleArr {
    _titleArr = titleArr;
    [self updateHieght];
}

- (void)setImgArr:(NSArray *)imgArr {
    _imgArr = imgArr;
    [self updateHieght];
}

- (void)setPlaceholderArr:(NSArray *)placeholderArr{
    _placeholderArr = placeholderArr;
    [_tableView reloadData];
}

- (void)setBottomSacping:(CGFloat)bottomSacping{
    _bottomSacping = bottomSacping;
    [self updateHieght];
}

- (void)setCellSelectionStyle:(UITableViewCellSelectionStyle)cellSelectionStyle{
    _cellSelectionStyle = cellSelectionStyle;
    [self.tableView reloadData];
}

- (void)updateHieght {
    _rowNum = self.titleArr.count > self.imgArr.count ? self.titleArr.count : self.imgArr.count;
    self.tableView.height = self.height = _rowNum * 44 + _bottomSacping;
    [self.tableView reloadData];
}


#pragma mark UITableViewDelegate
- (NSInteger)tableView:(UITableView *)tableView numberOfRowsInSection:(NSInteger)section {
    return _rowNum;
}


- (CGFloat)tableView:(UITableView *)tableView heightForRowAtIndexPath:(NSIndexPath *)indexPath {
    return 40;
}

- (UITableViewCell*)tableView:(UITableView *)tableView cellForRowAtIndexPath:(NSIndexPath *)indexPath {
    static NSString *identifier = @"UITableViewCell";
    UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:identifier];
    if (!cell) {
        cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:identifier];
        
        UIImageView *imgView = [[UIImageView alloc] initWithFrame:CGRectMake(0, (44-15)/2, 15, 15)];
        imgView.tag = 100;
        [cell.contentView addSubview:imgView];
        
        if (_isCornerRadius) {
            imgView.layer.cornerRadius = imgView.frame.size.width/2;
            imgView.clipsToBounds = YES;
        }
        
        UILabel *lab = [[UILabel alloc] initWithFrame:CGRectMake(imgView.right + 10, (44-20)/2, cell.width - imgView.right - 10, 20)];
        lab.backgroundColor = [UIColor clearColor];
        lab.autoresizingMask = UIViewAutoresizingFlexibleWidth;
        lab.textColor = _textColor;
        lab.font = [UIFont systemFontOfSize:12];
        
        lab.tag = 101;
        [cell.contentView addSubview:lab];
        
    }
//显示列表的线
    [cell.contentView showTopSeparateLine:indexPath.row != 0 edgeInset:UIEdgeInsetsZero];
    UIImageView *imgView = [cell viewWithTag:100];
    UILabel *lab = [cell viewWithTag:101];
    id image = self.imgArr.count > indexPath.row ? self.imgArr[indexPath.row] : nil;
    if ([image isKindOfClass:[UIImage class]]) {
        imgView.image = image;
    }else if ([image isKindOfClass:[NSString class]]){
        //        [imgView sd_setImageWithURL:[NSURL URLWithString:image] placeholderImage:[UIImage imageNamed:self.placeholderArr.count > indexPath.row ? self.placeholderArr[indexPath.row] : nil] completed:^(UIImage *image, NSError *error, SDImageCacheType cacheType, NSURL *imageURL) {
        //            if (image) {
        //                return ;
        //            }
        //            imgView.contentMode = UIViewContentModeScaleToFill;
        //        }];
    }
    
    lab.text = self.titleArr.count > indexPath.row ? self.titleArr[indexPath.row] : @"";

    cell.selectionStyle = _cellSelectionStyle;
    
    cell.backgroundColor = [UIColor clearColor];
    cell.contentView.backgroundColor = [UIColor clearColor];
    
    return cell;
}


- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
    [tableView deselectRowAtIndexPath:indexPath animated:YES];
    if (self.selectBlock)
        self.selectBlock(indexPath.row);
        }

@end

@interface SCPopOverListView ()<UIGestureRecognizerDelegate>
{
    UIView *_superView;
}
@end

@implementation SCPopOverListView
- (id)initWithTitles:(NSArray*)titleArr images:(NSArray*)imgArr superView:(UIView*)superView maxWidth:(CGFloat)maxWidth andisCornerRadius:(BOOL)isCornerRadius{
    self = [super initWithFrame:superView.bounds];
    if (self) {
        self.backgroundColor = [UIColor clearColor];
        self.autoresizingMask = UIViewAutoresizingFlexibleHeight | UIViewAutoresizingFlexibleWidth;
        
        _superView = superView;
        UITapGestureRecognizer *gesture = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(hidePopList)];
        gesture.delegate = self;
        [self addGestureRecognizer:gesture];
        
        _listView = [[SCPopListView alloc] initWithFrame:CGRectMake(self.width - maxWidth , 66, maxWidth, 20)];
        _listView.autoresizingMask = UIViewAutoresizingFlexibleLeftMargin;
        _listView.titleArr = titleArr;
        _listView.imgArr = imgArr;
        _listView.isCornerRadius = isCornerRadius;
        [self addSubview:_listView];
    }
    return self;
}


- (void)showPopList {
    [_superView addSubview:self];
}

- (void)hidePopList {
    [self removeFromSuperview];
}

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch
{
    // 若为UITableViewCellContentView(即点击了tableViewCell),则不截获Touch事件
    if ([NSStringFromClass([touch.view class]) isEqualToString:@"UITableViewCellContentView"]) {
        return NO;
    }
    return  YES;
}

@end

知识点

  1. 那个三角形是如何画出来的呢?
绘制多边形,实际上就是又一些直线条连成,主要使用moveToPoint: 和addLineToPoint:
方法去创建,moveToPoint:这个方法是设置起始点,意味着从这个点开始,我们就可以使
用addLineToPoint:去设置我们想要创建的多边形经过的点,也就是两线相交的那个点,用
addLineToPoint:去创建一个形状的线段,我们可以连续创建line,每一个line的起点都是
先前的终点,终点就是指定的点,将线段连接起来就是我们想要创建的多边形了。
在这里我们可以看到最后第3条线是用[path closePath];得到的,closePath方法不仅结
束一个shape的subpath表述,它也在最后一个点和第一个点之间画一条线段,这个一个便
利的方法我们不需要去画最后一条线了.

UIBezierPath贝塞尔曲线常用方法

  1. 若为UITableViewCellContentView(即点击了tableViewCell),则不截获Touch事件
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch
{
    // 若为UITableViewCellContentView(即点击了tableViewCell),则不截获Touch事件
    if ([NSStringFromClass([touch.view class]) isEqualToString:@"UITableViewCellContentView"]) {
        return NO;
    }
    return  YES;
}

具体使用

- (SCPopOverListView*)popListView {
    if (!_popListView) {
        NSArray *titleArr = @[@"编辑", @"删除"];
        NSArray *imgArr = @[[UIImage imageNamed:@"fmp_edit"], [UIImage imageNamed:@"fmp_delete"]];
        
        _popListView = [[SCPopOverListView alloc] initWithTitles:titleArr images:imgArr superView:self.navigationController.view maxWidth:120 andisCornerRadius:NO];
        _popListView.listView.bottomSacping = 10;
        __weak typeof(self) weakSelf = self;
        __weak SCPopOverListView *weakPop = _popListView;
        _popListView.listView.selectBlock = ^(NSInteger index) {
            if (index == 0) {
            [weakPop hidePopList];
        };
    }
    return _popListView;
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 212,718评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 90,683评论 3 385
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 158,207评论 0 348
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 56,755评论 1 284
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 65,862评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,050评论 1 291
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,136评论 3 410
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 37,882评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,330评论 1 303
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,651评论 2 327
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,789评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,477评论 4 333
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,135评论 3 317
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,864评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,099评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,598评论 2 362
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,697评论 2 351

推荐阅读更多精彩内容

  • Swift1> Swift和OC的区别1.1> Swift没有地址/指针的概念1.2> 泛型1.3> 类型严谨 对...
    cosWriter阅读 11,093评论 1 32
  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,066评论 4 62
  • 16-summer#12.29#打卡 有朋自远方来当热情接待,以示好客,这是尽地主之谊的东道主精神。 但当一个男人...
    写故事的阿夏阅读 326评论 0 0
  • 【手写爱情绘本4.0】爱情的真谛,或许就是用心去了解对方的需要,重新审视你们的感情经历,你是否在相处时尽到了恋人的...
    主播亚东阅读 531评论 0 5
  • 先上代码,比如我使用aspectj风格的注解,定义了一个针对naiveWaiter的切面逻辑 测试类如下 debu...
    北交吴志炜阅读 974评论 0 1