完整的 2019 示例复制和粘贴
首先在故事板上设置“分组”:它必须在初始化时发生,你不能在以后真正设置它,所以在故事板上更容易记住:
下一个,
由于 Apple 错误,必须实现heightForHeaderInSection 。
func tableView(_ tableView: UITableView,
heightForHeaderInSection section: Int) -> CGFloat {
return CGFloat(70.0)
}
仍然存在一个 Apple 错误 - 十年了 - 如果您没有heightForHeaderInSection
电话,它根本不会显示第一个标题(即索引 0)。
所以,tableView.sectionHeaderHeight = 70
根本行不通,它坏了。
设置框架没有任何效果:
viewForHeaderInSection
只需创建一个 UIView() 。
如果您UIView(frame ...)只是将视图的大小设置为由表确定,那么它是没有意义的/什么都做不了。
所以第一行将viewForHeaderInSection
是简单let view = UIView()
的,这就是你返回的视图。
func tableView(_ tableView: UITableView,
viewForHeaderInSection section: Int) -> UIView? {
let view = UIView()
let l = UILabel()
view.addSubview(l)
l.bindEdgesToSuperview()
l.backgroundColor = .systemOrange
l.font = UIFont.systemFont(ofSize: 15)
l.textColor = .yourClientsFavoriteColor
switch section {
case 0:
l.text = "First section on screen"
case 1:
l.text = "Here's the second section"
default:
l.text = ""
}
return view
}
就是这样 - 其他任何事情都是浪费时间。
另一个“挑剔”的苹果问题。
上面使用的便利扩展是:
extension UIView {
// incredibly useful:
func bindEdgesToSuperview() {
guard let s = superview else {
preconditionFailure("`superview` nil in bindEdgesToSuperview")
}
translatesAutoresizingMaskIntoConstraints = false
leadingAnchor.constraint(equalTo: s.leadingAnchor).isActive = true
trailingAnchor.constraint(equalTo: s.trailingAnchor).isActive = true
topAnchor.constraint(equalTo: s.topAnchor).isActive = true
bottomAnchor.constraint(equalTo: s.bottomAnchor).isActive = true
}
}