如何在swift中更改tableview中section的textcolor。
viewForHeaderInSection
答案 0 :(得分:1)
override func tableView(tableView: UITableView!, viewForHeaderInSection section: Int) -> UIView! {
var customView:UIView?
customView.frame = // set frame according to tableview width and header height
customView.backgroundColor = UIColor.greenColor()
return customView
}
希望这会对你有所帮助。