美文网首页
给cell画圆角

给cell画圆角

作者: xieyinghao | 来源:发表于2019-08-09 09:36 被阅读0次
    //给组cell上方设置圆角
    - (void)createTopCornerRadius:(UITableViewCell*)cuCell{UIBezierPath*maskPath = [UIBezierPath bezierPathWithRoundedRect:cuCell.contentView.bounds byRoundingCorners:UIRectCornerTopLeft|UIRectCornerTopRight cornerRadii:CGSizeMake(10,10)];CAShapeLayer*maskLayer = [[CAShapeLayer alloc]init];maskLayer.frame= cuCell.contentView.bounds;maskLayer.path= maskPath.CGPath;cuCell.layer.mask= maskLayer;}
    //给组cell下方设置圆角
    - (void)createBottomCornerRadius:(UITableViewCell*)cuCell{UIBezierPath*maskPath = [UIBezierPath bezierPathWithRoundedRect:cuCell.contentView.bounds byRoundingCorners:UIRectCornerBottomLeft|UIRectCornerBottomRight cornerRadii:CGSizeMake(10,10)];CAShapeLayer*maskLayer = [[CAShapeLayer alloc]init];maskLayer.frame= cuCell.contentView.bounds;maskLayer.path= maskPath.CGPath;cuCell.layer.mask= maskLayer;}
    

    相关文章

      网友评论

          本文标题:给cell画圆角

          本文链接:https://www.haomeiwen.com/subject/ybccjctx.html