//给组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画圆角
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。
推荐阅读更多精彩内容
- 现在的UI设计越来越个性化,原始的tableView样式在他们眼里觉得不好看,得加上圆角和分区如图 @“望穿秋水”...
- 要想实现这样的效果,可以重写cell的-(void)setFrame:(CGRect)frame方法 如果此时想要...