UITableView - change section header color

前端 未结 30 2895
不思量自难忘°
不思量自难忘° 2020-11-27 08:50

How can I change color of a section header in UITableView?

EDIT: The answer provided by DJ-S should be considered for iOS 6 and above. The accepted

30条回答
  •  我在风中等你
    2020-11-27 09:15

    In my case, It worked like this:

    let headerIdentifier = "HeaderIdentifier"
    let header = self.tableView.dequeueReusableHeaderFooterView(withIdentifier: headerIdentifier)
    header.contentView.backgroundColor = UIColor.white
    

提交回复
热议问题