简体   繁体   English

从UITableView删除顶部填充

[英]Remove top padding from UITableView

I have a UITableView as a cell of another UITableView (nested UITableViews). 我有一个UITableView作为另一个UITableView(嵌套的UITableViews)的单元格。 There is a top padding that I can't reason for, the top padding only appears when I make the CustomTableCell has a UITableView. 我没有理由要使用顶部填充,仅当我使CustomTableCell具有UITableView时才显示顶部填充。

class CustomTableCell: UITableViewCell, UITableViewDelegate, UITableViewDataSource {

  private let cellId = "cellId"

  lazy var tableView: UITableView = {

    let tv = UITableView(frame: .zero, style: .grouped)
    tv.translatesAutoresizingMaskIntoConstraints = false
    tv.backgroundColor = .green
    tv.delegate = self
    tv.dataSource = self
    tv.alwaysBounceVertical = false
    tv.isScrollEnabled = false

    tv.separatorColor = .red;
    tv.separatorStyle = .none;

    tv.register(InnerTableCell.self, forCellReuseIdentifier: self.cellId)
    return tv
  }()

  func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
    return 10
  }

  func tableView(_ tableView: UITableView, heightForRowAt indexPath: IndexPath) -> CGFloat {
    return 50
  }

  func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {

    let cell = tableView.dequeueReusableCell(withIdentifier: cellId, for: indexPath) as! InnerTableCell
    return cell
  }

  func setupAutoLayout() {

    tableView.leftAnchor.constraint(equalTo: contentView.leftAnchor).isActive = true
    tableView.rightAnchor.constraint(equalTo: contentView.rightAnchor).isActive = true
    tableView.topAnchor.constraint(equalTo: contentView.topAnchor).isActive = true
    tableView.bottomAnchor.constraint(equalTo: contentView.bottomAnchor).isActive = true
  }

  override init(style: UITableViewCellStyle, reuseIdentifier: String?) {
    super.init(style: style, reuseIdentifier: reuseIdentifier)

    contentView.backgroundColor = .white
    contentView.addSubview(tableView)
    setupAutoLayout()
  }

  required init?(coder aDecoder: NSCoder) {
    fatalError("init(coder:) has not been implemented")
  }
}

Here is the link to entire code: https://ideone.com/QAxkPR 这是完整代码的链接: https : //ideone.com/QAxkPR

Here is how it looks in reveal 这是揭示的样子 在此处输入图片说明

将样式更改为.plain而不是.grouped

let tv = UITableView(frame: .zero, style: .plain)

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM