我發現了類似的問題,但沒有人幫助我。 我需要設置標題的背景顏色在我的表爲白色,它是灰色的,現在(與表格的背景顏色)。如何在TableView中爲標題設置背景顏色?
這裏是我的tableView
功能:
func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int)
{
let header = view as! UITableViewHeaderFooterView
header.backgroundColor = UIColor.white
header.textLabel?.font = UIFont(name: "Futura", size: 13)!
header.textLabel?.textColor = UIColor.blue
}
func tableView(tableView: UITableView, ViewForHeaderInSection section: Int) -> UIView? {
tableView.backgroundColor = UIColor.white
return tableView
}
func tableView(_ tableView: UITableView, titleForHeaderInSection section: Int) -> String?
{
return titles[section]
}
我設置背景顏色爲白色,但沒有任何變化。 UITableView中的
我代替我的'viewForHeaderInSection'與你(我的輸入錯誤,順便說一句),但它並沒有幫助。 – Jamil
你應該設置的UITableView – iParesh
的heightForHeaderInSection添加了這個功能,還是沒有效果 – Jamil