我想制作这样的细胞。我使用swift。
但我不知道如何在单元格的右侧和左侧添加边距。
你知道如何对该部分进行相同的边缘效果吗? (如果有多个单元格,则接触边缘不会倒圆)
当我使用contentInset时:
self.tableView.contentInset = UIEdgeInsetsMake(0, -15, 0, 0)
self.tableView.contentInset = UIEdgeInsetsMake(0, 0, 0, -15)
答案 0 :(得分:5)
从您的屏幕截图中看起来您正在尝试使用分组表格视图执行此操作。为此,您应该使用UITableView
添加到UIViewController
而不是UITableViewController
。
要设置插图,您只需将表格视图的约束/框架设置为从左右边缘略微进入,并将视图的背景颜色设置为UIColor.groupTableViewBackgroundColor()
然后在cellForRowAtIndexPath
中你可以这样说:
func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
let cornerRadius:CGFloat = 5.0
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath)
// Configure your cell
let sectionCount = tableView.numberOfRowsInSection(indexPath.section)
let shapeLayer = CAShapeLayer()
cell.layer.mask = nil
if sectionCount > 1
{
switch indexPath.row {
case 0:
var bounds = cell.bounds
bounds.origin.y += 1.0
let bezierPath = UIBezierPath(roundedRect: bounds, byRoundingCorners: [.TopLeft, .TopRight], cornerRadii: CGSize(width: cornerRadius,height: cornerRadius))
shapeLayer.path = bezierPath.CGPath
cell.layer.mask = shapeLayer
case sectionCount - 1:
var bounds = cell.bounds
bounds.size.height -= 1.0
let bezierPath = UIBezierPath(roundedRect: bounds, byRoundingCorners: [.BottomLeft, .BottomRight], cornerRadii: CGSize(width: cornerRadius,height: cornerRadius))
shapeLayer.path = bezierPath.CGPath
cell.layer.mask = shapeLayer
default:
break
}
return cell
}
else
{
let bezierPath = UIBezierPath(roundedRect: CGRectInset(cell.bounds,0.0,2.0), cornerRadius: cornerRadius)
shapeLayer.path = bezierPath.CGPath
cell.layer.mask = shapeLayer
return cell
}
}
您只需根据行的索引路径和部分中的行数应用蒙版。如果您有动态调整大小的单元格,则可能需要将掩码应用于UITableViewCell
子类。
您应该得到如下结果:
答案 1 :(得分:1)
自iOS 13.0起,就有一个新的表视图样式“插入分组”可以完全做到这一点: https://developer.apple.com/documentation/uikit/uitableview/style/insetgrouped