关于cell部分圆角,类似iPad 设置页面(附加点击效果设置)

类似图片

这还不算,还要在 section 的四周加上边线,还得有点击效果!

一开始,整个人都不好了,后来还是在神战搜到了一些解决方案,最后结合了2个方法并在一起,终于算是实现了。不过必须iOS8 以上才行。
iOS7 的话,边线就得再想方法了,圆角可以实现。

原解决方案链接,可以去看看
http://stackoverflow.com/questions/18822619/ios-7-tableview-like-in-settings-app-on-ipad

下面 贴个我整理过的 解决方案。稍微解释一下:

  • 在cell 本身初始化里绘制,由于自动布局呢,肯定是不行的。
  • 这里的解决方案呢是绘制一个圆角路径的Layer 加在cell 的backgroundView 上,这样圆角就有了。
  • 但是呢cell 点击就很难弄。所以在此又覆盖了一层蒙板mask,遮住了其他不想要显示的东东(iOS8+,但是Layer 本身就有mask,个人觉得再改改应该也是可以的,顺便深入研究以下Layer)
  • 暂时 iOS7,下面的MaskLayer 不要了,而且点击效果也不能有。自行判断一下好了。

// 在cellWillDisplayCell 中添加
 - (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    [self addRoundedCornersWithRadius:10 forTableView:tableView forCell:cell atIndexPath:indexPath];
}

/*!
 *  添加 cell 圆角 与 边线(willDisplayCell 中添加)
 *
 *  @param radius    圆角
 *  @param tableView tableView
 *  @param cell      cell
 *  @param indexPath index
 */
- (void)addRoundedCornersWithRadius:(CGFloat)radius forTableView:(UITableView *)tableView forCell:(UITableViewCell *)cell atIndexPath:(NSIndexPath *)indexPath {

    if ([cell respondsToSelector:@selector(tintColor)]) {
        
        if (tableView == self.setupTableView) {
            
            NSInteger sectionCount = [tableView numberOfRowsInSection:indexPath.section] - 1;// section row 个数
            CGRect bounds = CGRectInset(cell.bounds, 40, 0); // 显示的cell 点击区域

            // 1.新 layer 用于添加 cell 边线
            CAShapeLayer *newlayer = [[CAShapeLayer alloc] init];
            CGMutablePathRef pathRef = CGPathCreateMutable();
            
            // 2.再盖一个 mask
            CAShapeLayer *maskLayer = [[CAShapeLayer alloc] init];// 用于蒙板
            
            // section 只有一个时。
            if (indexPath.row == 0 && indexPath.row == sectionCount) {
                
                CGPathAddRoundedRect(pathRef, nil, bounds, radius, radius);
                
                [maskLayer setPath:[UIBezierPath bezierPathWithRoundedRect:bounds cornerRadius:radius].CGPath];

            // 第一个 row
            } else if (indexPath.row == 0) {

                CGPathMoveToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMaxY(bounds));//左下
                CGPathAddArcToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMinY(bounds), CGRectGetMidX(bounds), CGRectGetMinY(bounds), radius);// 左上
                CGPathAddArcToPoint(pathRef, nil, CGRectGetMaxX(bounds), CGRectGetMinY(bounds), CGRectGetMaxX(bounds), CGRectGetMidY(bounds), radius);// 右上
                CGPathAddLineToPoint(pathRef, nil, CGRectGetMaxX(bounds), CGRectGetMaxY(bounds));// 右下
                CGPathAddLineToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMaxY(bounds));// 下线

                [maskLayer setPath:[UIBezierPath bezierPathWithRoundedRect:bounds
                                                         byRoundingCorners:(UIRectCornerTopLeft|UIRectCornerTopRight)
                                                               cornerRadii:CGSizeMake(radius, radius)].CGPath];
                
            // 最后一个 row
            } else if (indexPath.row == sectionCount) {
                
                CGPathMoveToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMinY(bounds));// 左上
                CGPathAddArcToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMaxY(bounds), CGRectGetMidX(bounds), CGRectGetMaxY(bounds), radius);// 左下
                CGPathAddArcToPoint(pathRef, nil, CGRectGetMaxX(bounds), CGRectGetMaxY(bounds), CGRectGetMaxX(bounds), CGRectGetMidY(bounds), radius);// 右下
                CGPathAddLineToPoint(pathRef, nil, CGRectGetMaxX(bounds), CGRectGetMinY(bounds));// 右上
                
                
                [maskLayer setPath:[UIBezierPath bezierPathWithRoundedRect:bounds
                                                         byRoundingCorners:(UIRectCornerBottomLeft|UIRectCornerBottomRight)
                                                               cornerRadii:CGSizeMake(radius, radius)].CGPath];
                
            // 中间 row
            } else {
                
                CGPathMoveToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMinY(bounds));// 左上
                CGPathAddLineToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMaxY(bounds));// 左下
                CGPathAddLineToPoint(pathRef, nil, CGRectGetMaxX(bounds), CGRectGetMaxY(bounds));// 右下
                CGPathAddLineToPoint(pathRef, nil, CGRectGetMaxX(bounds), CGRectGetMinY(bounds));// 右上
                
                UIBezierPath *path = [UIBezierPath bezierPathWithRect:bounds];
                [maskLayer setPath:path.CGPath];

            }
            
            // 1.新添加的layer 设置属性
            newlayer.path = pathRef;
            CFRelease(pathRef);
            newlayer.fillColor = [UIColor whiteColor].CGColor;
            newlayer.strokeColor = [UIColor colorForHex:@"dddddd"].CGColor;
            newlayer.lineWidth = 1.;
            
            UIView *testView = [[UIView alloc] initWithFrame:bounds];
            [testView.layer insertSublayer:newlayer atIndex:0];
            testView.backgroundColor = [UIColor clearColor];
            cell.backgroundView = testView;
            
            
            // 2.mask
            [cell setMaskView:[[UIView alloc] initWithFrame:cell.bounds]];
            [cell.maskView.layer insertSublayer:maskLayer atIndex:0];
            maskLayer.borderColor = [UIColor redColor].CGColor;
            
            [cell.maskView.layer setMasksToBounds:YES];
            [cell setClipsToBounds:YES];

        }
    }
}

顺便 贴以下 cell 选中效果设置

- (void)awakeFromNib {
    [super awakeFromNib];
    
    self.title.highlightedTextColor = [UIColor colorForHex:@"ffffff"];
    self.title.textColor = [UIColor colorForHex:@"80808a"];
 }

- (void)setSelected:(BOOL)selected animated:(BOOL)animated {
    [super setSelected:selected animated:animated];

    UIView *backGroundView = [[UIView alloc]initWithFrame:self.bounds];
    backGroundView.backgroundColor = [UIColor whiteColor];// 背景底,上面随便加
  
    self.selectedBackgroundView  = backGroundView;
}
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 205,386评论 6 479
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 87,939评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 151,851评论 0 341
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,953评论 1 278
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,971评论 5 369
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,784评论 1 283
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 38,126评论 3 399
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,765评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 43,148评论 1 300
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,744评论 2 323
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,858评论 1 333
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,479评论 4 322
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 39,080评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,053评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,278评论 1 260
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 45,245评论 2 352
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,590评论 2 343

推荐阅读更多精彩内容

  • 发现 关注 消息 iOS 第三方库、插件、知名博客总结 作者大灰狼的小绵羊哥哥关注 2017.06.26 09:4...
    肇东周阅读 12,019评论 4 62
  • 转载自:https://github.com/Tim9Liu9/TimLiu-iOS 目录 UI下拉刷新模糊效果A...
    袁俊亮技术博客阅读 11,907评论 9 105
  • 嗯哼嗯哼蹦擦擦~~~ 转载自:https://github.com/Tim9Liu9/TimLiu-iOS 目录 ...
    philiha阅读 4,839评论 0 6
  • ——《如何说才会听,怎么听孩子才肯说》读后感 “家里买了这么多牛奶,你都不泡着喝,什么时候能喝完!” “妈,您说话...
    橙云影阅读 393评论 0 0
  • 早上好#易效能 # 蒋小园 2017/07/31(256/300) 【不忘初心,坚持始终】 健康:作息《昨晚今早》...
    圆圆jXY阅读 208评论 0 0