如何自定义 UITableView 的标题背景颜色、高度和文本?

Posted

技术标签:

【中文标题】如何自定义 UITableView 的标题背景颜色、高度和文本?【英文标题】:How do I customize the header background color, height, and text of a UITableView? 【发布时间】:2019-06-13 18:14:01 【问题描述】:

我想为 UITableView 自定义我的部分标题。如何添加文本颜色、背景颜色和节标题高度?

【问题讨论】:

【参考方案1】:
func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int)
    view.tintColor = UIColor.black
    let header = view as! UITableViewHeaderFooterView
    header.textLabel?.textColor = UIColor.white


func tableView(_ tableView: UITableView, heightForHeaderInSection section: Int) -> CGFloat 
        return 50.0

【讨论】:

以上是关于如何自定义 UITableView 的标题背景颜色、高度和文本?的主要内容,如果未能解决你的问题,请参考以下文章

分组 UITableView 自定义绘制单元格,而不更改背景颜色?

如何更改 UITableHeaderView 的背景颜色和文本颜色

在普通样式的 UITableView 中更改自定义 UITableViewCell 单元格的背景颜色

如何在 xamarin ios 中自定义 UITableViewCell 的背景颜色?

如何更改 UITableViewCell 编辑按钮背景颜色?

UISearchBar上方的UITableView背景颜色[重复]