修改 UITableView 的 HeaderView、FooterView 背景、文字颜色

// 修改 HeaderView 背景颜色
func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
        view.tintColor = UIColor.clear
        (view as! UITableViewHeaderFooterView).textLabel?.textColor = UIColor.readBlack
}
    
// footer View 同理
func tableView(_ tableView: UITableView, willDisplayFooterView view: UIView, forSection section: Int) {
        
}

你可能感兴趣的:(修改 UITableView 的 HeaderView、FooterView 背景、文字颜色)