圆角仅适用于 UITableView 的底部边缘
Rounded Corners only for the bottoms edges of UITableView
我使用下面的代码只为 tableView 的底部边缘制作圆角
CALayer *capa = self.patientTableView.layer;
//Round
CGRect bounds = capa.bounds;
UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:bounds
byRoundingCorners:(UIRectCornerBottomLeft | UIRectCornerBottomRight)
cornerRadii:CGSizeMake(10.0, 10.0)];
CAShapeLayer *maskLayer = [CAShapeLayer layer];
maskLayer.frame = bounds;
maskLayer.path = maskPath.CGPath;
[capa addSublayer:maskLayer];
capa.mask = maskLayer;
此代码工作正常,但 tableview 未显示其框架高度以下的内容(但它滚动到其 offset.y)。
您可以通过将 table 视图放在 UIView
中来解决此问题,然后将遮罩应用于该容器视图。这样蒙版就不会随着 table 视图的 contentOffset
移动。
我使用下面的代码只为 tableView 的底部边缘制作圆角
CALayer *capa = self.patientTableView.layer;
//Round
CGRect bounds = capa.bounds;
UIBezierPath *maskPath = [UIBezierPath bezierPathWithRoundedRect:bounds
byRoundingCorners:(UIRectCornerBottomLeft | UIRectCornerBottomRight)
cornerRadii:CGSizeMake(10.0, 10.0)];
CAShapeLayer *maskLayer = [CAShapeLayer layer];
maskLayer.frame = bounds;
maskLayer.path = maskPath.CGPath;
[capa addSublayer:maskLayer];
capa.mask = maskLayer;
此代码工作正常,但 tableview 未显示其框架高度以下的内容(但它滚动到其 offset.y)。
您可以通过将 table 视图放在 UIView
中来解决此问题,然后将遮罩应用于该容器视图。这样蒙版就不会随着 table 视图的 contentOffset
移动。