解决自适应 tableHeaderView 覆盖 cell 的问题

  1. 使用代理方法返回 tableHeaderView 而不是直接设置
 func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
    return tableHeaderView
}
  1. 自动布局完后立即刷新画面并直接设置 tableHeaderView
tableView.layoutIfNeeded()
tableView.tableHeaderView = tableHeaderView
  1. 以上如果都不行可能是因为自动布局用了Snapkit的类似
xxView.height.equalTo(view).multipliedBy(0.3)

之类的写法,把上面改成equalTo(view.bounds.height * 0.3)就行了
(并不知道为啥

你可能感兴趣的:(解决自适应 tableHeaderView 覆盖 cell 的问题)