iOS tableview整個Section切圓角

方法一

iOS UITableView section圓角陰影
如果自定義的cell底部有線棍好,則不適合此方法。
距底部有個5pt的偏移丘侠。UIEdgeInsetsMake(0, 0, 5, 0)

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath {
    // 圓角角度
    CGFloat radius = 4.f;
    // 設置cell 背景色為透明
    cell.backgroundColor = UIColor.clearColor;
    cell.contentView.backgroundColor = UIColor.clearColor;
    // 創(chuàng)建兩個layer
    CAShapeLayer *normalLayer = [[CAShapeLayer alloc] init];
    CAShapeLayer *selectLayer = [[CAShapeLayer alloc] init];
    // 獲取顯示區(qū)域大小
    CGRect bounds = CGRectInset(cell.bounds, 0, 0);
    // cell的backgroundView
    UIView *normalBgView = [[UIView alloc] initWithFrame:bounds];
    // 獲取每組行數
    NSInteger rowNum = [tableView numberOfRowsInSection:indexPath.section];
    // 貝塞爾曲線
    UIBezierPath *bezierPath = nil;
    
    if (rowNum == 1) {
        // 一組只有一行(四個角全部為圓角)
        bezierPath = [UIBezierPath bezierPathWithRoundedRect:bounds byRoundingCorners:UIRectCornerAllCorners cornerRadii:CGSizeMake(radius, radius)];
        normalBgView.clipsToBounds = NO;
    }else {
        normalBgView.clipsToBounds = YES;
        if (indexPath.row == 0) {
            normalBgView.frame = UIEdgeInsetsInsetRect(bounds, UIEdgeInsetsMake(-5, 0, 0, 0));
            CGRect rect = UIEdgeInsetsInsetRect(bounds, UIEdgeInsetsMake(5, 0, 0, 0));
            // 每組第一行(添加左上和右上的圓角)
            bezierPath = [UIBezierPath bezierPathWithRoundedRect:rect byRoundingCorners:(UIRectCornerTopLeft|UIRectCornerTopRight) cornerRadii:CGSizeMake(radius, radius)];
        }else if (indexPath.row == rowNum - 1) {
            normalBgView.frame = UIEdgeInsetsInsetRect(bounds, UIEdgeInsetsMake(0, 0, -5, 0));
            CGRect rect = UIEdgeInsetsInsetRect(bounds, UIEdgeInsetsMake(0, 0, 5, 0));
            // 每組最后一行(添加左下和右下的圓角)
            bezierPath = [UIBezierPath bezierPathWithRoundedRect:rect byRoundingCorners:(UIRectCornerBottomLeft|UIRectCornerBottomRight) cornerRadii:CGSizeMake(radius, radius)];
        }else {
            // 每組不是首位的行不設置圓角
            bezierPath = [UIBezierPath bezierPathWithRect:bounds];
        }
    }
    
    // 陰影
    normalLayer.shadowColor = [UIColor blackColor].CGColor;
    normalLayer.shadowOpacity = 0.2;
    normalLayer.shadowOffset = CGSizeMake(0, 0);
    normalLayer.path = bezierPath.CGPath;
    normalLayer.shadowPath = bezierPath.CGPath;
    
    // 把已經繪制好的貝塞爾曲線路徑賦值給圖層惭嚣,然后圖層根據path進行圖像渲染render
    normalLayer.path = bezierPath.CGPath;
    selectLayer.path = bezierPath.CGPath;
    
    // 設置填充顏色
    normalLayer.fillColor = [UIColor whiteColor].CGColor;
    // 添加圖層到nomarBgView中
    [normalBgView.layer insertSublayer:normalLayer atIndex:0];
    normalBgView.backgroundColor = UIColor.clearColor;
    cell.backgroundView = normalBgView;
    
    // 替換cell點擊效果
    UIView *selectBgView = [[UIView alloc] initWithFrame:bounds];
    selectLayer.fillColor = [UIColor colorWithWhite:0.95 alpha:1.0].CGColor;
    [selectBgView.layer insertSublayer:selectLayer atIndex:0];
    selectBgView.backgroundColor = UIColor.clearColor;
    cell.selectedBackgroundView = selectBgView;
}
 

方法二

http://www.reibang.com/p/92662061c0dc

- (void)tableView:(UITableView *)tableView willDisplayCell:(UITableViewCell *)cell forRowAtIndexPath:(NSIndexPath *)indexPath{
    [self shearTableViewSection:cell tableView:tableView IndexPath:indexPath cornerRadius:4 width:0];
}
#pragma mark TableView Section 切圓角
- (void)shearTableViewSection:(UITableViewCell *)cell tableView:(UITableView *)tableView IndexPath:(NSIndexPath *)indexPath cornerRadius:(CGFloat)radius width:(CGFloat)width
{
    // 圓角弧度半徑
    CGFloat cornerRadius = 0.f;
    if (radius == 0) {
        cornerRadius = 10.f;
    }else{
        cornerRadius = radius;
    }
    
    // 設置cell的背景色為透明饭望,如果不設置這個的話,則原來的背景色不會被覆蓋
    cell.backgroundColor = UIColor.clearColor;
    cell.contentView.backgroundColor = UIColor.clearColor;
    
    // 創(chuàng)建一個shapeLayer
    CAShapeLayer *layer = [[CAShapeLayer alloc] init];
    CAShapeLayer *backgroundLayer = [[CAShapeLayer alloc] init]; //顯示選中
    // 創(chuàng)建一個可變的圖像Path句柄澈侠,該路徑用于保存繪圖信息
    CGMutablePathRef pathRef = CGPathCreateMutable();
    // 獲取cell的size
    // 第一個參數,是整個 cell 的 bounds, 第二個參數是距左右兩端的距離,第三個參數是距上下兩端的距離
    CGRect bounds;
    bounds = CGRectInset(cell.bounds, width, 0);
    
    // CGRectGetMinY:返回對象頂點坐標
    // CGRectGetMaxY:返回對象底點坐標
    // CGRectGetMinX:返回對象左邊緣坐標
    // CGRectGetMaxX:返回對象右邊緣坐標
    // CGRectGetMidX: 返回對象中心點的X坐標
    // CGRectGetMidY: 返回對象中心點的Y坐標
    
    // 這里要判斷分組列表中的第一行劫侧,每組section的第一行,每組section的中間行
    
    // CGPathAddRoundedRect(pathRef, nil, bounds, cornerRadius, cornerRadius);
    
    if ([tableView numberOfRowsInSection:indexPath.section]-1 == 0) {
        CGPathMoveToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMaxY(bounds));
        CGPathAddArcToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMinY(bounds), CGRectGetMidX(bounds), CGRectGetMinY(bounds), cornerRadius);
        CGPathAddArcToPoint(pathRef, nil, CGRectGetMaxX(bounds), CGRectGetMinY(bounds), CGRectGetMaxX(bounds), CGRectGetMidY(bounds), cornerRadius);
        CGPathAddArcToPoint(pathRef, nil, CGRectGetMaxX(bounds), CGRectGetMaxY(bounds), CGRectGetMidX(bounds), CGRectGetMaxY(bounds), cornerRadius);
        CGPathAddArcToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMaxY(bounds), CGRectGetMinX(bounds), CGRectGetMidY(bounds), cornerRadius);
        CGPathAddLineToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMaxY(bounds));
        
        
    }else if (indexPath.row == 0) {
        // 初始起點為cell的左下角坐標
        CGPathMoveToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMaxY(bounds));
        // 起始坐標為左下角埋涧,設為p板辽,(CGRectGetMinX(bounds), CGRectGetMinY(bounds))為左上角的點奇瘦,設為p1(x1,y1),(CGRectGetMidX(bounds), CGRectGetMinY(bounds))為頂部中點的點劲弦,設為p2(x2,y2)耳标。然后連接p1和p2為一條直線l1,連接初始點p到p1成一條直線l邑跪,則在兩條直線相交處繪制弧度為r的圓角次坡。
        CGPathAddArcToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMinY(bounds), CGRectGetMidX(bounds), CGRectGetMinY(bounds), cornerRadius);
        CGPathAddArcToPoint(pathRef, nil, CGRectGetMaxX(bounds), CGRectGetMinY(bounds), CGRectGetMaxX(bounds), CGRectGetMidY(bounds), cornerRadius);
        // 終點坐標為右下角坐標點,把繪圖信息都放到路徑中去,根據這些路徑就構成了一塊區(qū)域了
        CGPathAddLineToPoint(pathRef, nil, CGRectGetMaxX(bounds), CGRectGetMaxY(bounds));
        
    } else if (indexPath.row == [tableView numberOfRowsInSection:indexPath.section]-1) {
        
        // 初始起點為cell的左上角坐標
        CGPathMoveToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMinY(bounds));
        CGPathAddArcToPoint(pathRef, nil, CGRectGetMinX(bounds), CGRectGetMaxY(bounds), CGRectGetMidX(bounds), CGRectGetMaxY(bounds), cornerRadius);
        CGPathAddArcToPoint(pathRef, nil, CGRectGetMaxX(bounds), CGRectGetMaxY(bounds), CGRectGetMaxX(bounds), CGRectGetMidY(bounds), cornerRadius);
        // 添加一條直線画畅,終點坐標為右下角坐標點并放到路徑中去
        CGPathAddLineToPoint(pathRef, nil, CGRectGetMaxX(bounds), CGRectGetMinY(bounds));
    } else {
        
        // 添加cell的rectangle信息到path中(不包括圓角)
        CGPathAddRect(pathRef, nil, bounds);
    }
    // 把已經繪制好的可變圖像路徑賦值給圖層砸琅,然后圖層根據這圖像path進行圖像渲染render
    layer.path = pathRef;
    backgroundLayer.path = pathRef;
    // 注意:但凡通過Quartz2D中帶有creat/copy/retain方法創(chuàng)建出來的值都必須要釋放
    CFRelease(pathRef);
    // 按照shape layer的path填充顏色,類似于渲染render
    // layer.fillColor = [UIColor colorWithWhite:1.f alpha:0.8f].CGColor;
    layer.fillColor = [UIColor whiteColor].CGColor;
    
    
    // view大小與cell一致
    UIView *roundView = [[UIView alloc] initWithFrame:bounds];
    // 添加自定義圓角后的圖層到roundView中
    [roundView.layer insertSublayer:layer atIndex:0];
    roundView.backgroundColor = UIColor.clearColor;
    // cell的背景view
    cell.backgroundView = roundView;
}

?著作權歸作者所有,轉載或內容合作請聯(lián)系作者
  • 序言:七十年代末轴踱,一起剝皮案震驚了整個濱河市症脂,隨后出現(xiàn)的幾起案子,更是在濱河造成了極大的恐慌淫僻,老刑警劉巖诱篷,帶你破解...
    沈念sama閱讀 206,214評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件,死亡現(xiàn)場離奇詭異雳灵,居然都是意外死亡棕所,警方通過查閱死者的電腦和手機,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,307評論 2 382
  • 文/潘曉璐 我一進店門悯辙,熙熙樓的掌柜王于貴愁眉苦臉地迎上來琳省,“玉大人,你說我怎么就攤上這事躲撰≌氡幔” “怎么了?”我有些...
    開封第一講書人閱讀 152,543評論 0 341
  • 文/不壞的土叔 我叫張陵茴肥,是天一觀的道長坚踩。 經常有香客問我,道長瓤狐,這世上最難降的妖魔是什么瞬铸? 我笑而不...
    開封第一講書人閱讀 55,221評論 1 279
  • 正文 為了忘掉前任,我火速辦了婚禮础锐,結果婚禮上嗓节,老公的妹妹穿的比我還像新娘。我一直安慰自己皆警,他們只是感情好拦宣,可當我...
    茶點故事閱讀 64,224評論 5 371
  • 文/花漫 我一把揭開白布。 她就那樣靜靜地躺著,像睡著了一般鸵隧。 火紅的嫁衣襯著肌膚如雪绸罗。 梳的紋絲不亂的頭發(fā)上,一...
    開封第一講書人閱讀 49,007評論 1 284
  • 那天豆瘫,我揣著相機與錄音珊蟀,去河邊找鬼。 笑死外驱,一個胖子當著我的面吹牛育灸,可吹牛的內容都是我干的。 我是一名探鬼主播昵宇,決...
    沈念sama閱讀 38,313評論 3 399
  • 文/蒼蘭香墨 我猛地睜開眼磅崭,長吁一口氣:“原來是場噩夢啊……” “哼!你這毒婦竟也來了瓦哎?” 一聲冷哼從身側響起砸喻,我...
    開封第一講書人閱讀 36,956評論 0 259
  • 序言:老撾萬榮一對情侶失蹤,失蹤者是張志新(化名)和其女友劉穎蒋譬,沒想到半個月后恩够,有當地人在樹林里發(fā)現(xiàn)了一具尸體,經...
    沈念sama閱讀 43,441評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡羡铲,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內容為張勛視角 年9月15日...
    茶點故事閱讀 35,925評論 2 323
  • 正文 我和宋清朗相戀三年,在試婚紗的時候發(fā)現(xiàn)自己被綠了儡毕。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片也切。...
    茶點故事閱讀 38,018評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡,死狀恐怖腰湾,靈堂內的尸體忽然破棺而出雷恃,到底是詐尸還是另有隱情,我是刑警寧澤费坊,帶...
    沈念sama閱讀 33,685評論 4 322
  • 正文 年R本政府宣布倒槐,位于F島的核電站,受9級特大地震影響附井,放射性物質發(fā)生泄漏讨越。R本人自食惡果不足惜,卻給世界環(huán)境...
    茶點故事閱讀 39,234評論 3 307
  • 文/蒙蒙 一永毅、第九天 我趴在偏房一處隱蔽的房頂上張望把跨。 院中可真熱鬧,春花似錦沼死、人聲如沸着逐。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,240評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽耸别。三九已至健芭,卻和暖如春,著一層夾襖步出監(jiān)牢的瞬間秀姐,已是汗流浹背慈迈。 一陣腳步聲響...
    開封第一講書人閱讀 31,464評論 1 261
  • 我被黑心中介騙來泰國打工, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留囊扳,地道東北人吩翻。 一個月前我還...
    沈念sama閱讀 45,467評論 2 352
  • 正文 我出身青樓,卻偏偏與公主長得像锥咸,于是被迫代替她去往敵國和親狭瞎。 傳聞我的和親對象是個殘疾皇子,可洞房花燭夜當晚...
    茶點故事閱讀 42,762評論 2 345