添加前导和尾随间隙UITableViewCell

时间:2018-04-30 04:45:04

标签: swift uitableview

prototype cell

所以我想在单元格的左侧和右侧添加空格,以便单元格不会填满整个屏幕宽度。

我该怎么做?

2 个答案:

答案 0 :(得分:0)

  • 设置tableview的x坐标=

  • 中所需的单元间距
  • tableview的左侧设置宽度= screenwidth - 您想要的间距 左边的单元格

  • 然后将前导和尾随约束添加到tableview

实施例

enter image description here

答案 1 :(得分:0)

将此代码添加到您的单元格班级中

 override func layoutSubviews() {
    // Set the width of the cell
    self.bounds = CGRect(x: self.bounds.origin.x, y: self.bounds.origin.y, width: self.bounds.size.width - 40, height: self.bounds.size.height)
    super.layoutSubviews()
}