Я новичок, пытающийся выучить Swift
Я пытаюсь создать свой собственный заголовок раздела, создав uiview и добавив к нему метку перед его возвратом.Однако ярлык никогда не отображается, только uiview.
Я не вижу, что я делаю неправильно?
override func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat {
return 40
}
override func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView? {
let sectionHeaderView = UIView()
sectionHeaderView.backgroundColor = UIColor.lightGray
sectionHeaderView.layer.cornerRadius = 0
let sectionLabel = UILabel()
sectionLabel.text = "Test"
sectionLabel.textColor = UIColor.black
sectionLabel.font = UIFont.boldSystemFont(ofSize: 16)
sectionHeaderView.addSubview(sectionLabel)
return sectionHeaderView
}