如何在swift中的tableView部分更改文本颜色

时间:2015-05-29 08:07:47

标签: ios swift

如何在swift中更改tableview中section的textcolor。

viewForHeaderInSection

1 个答案:

答案 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
} 

希望这会对你有所帮助。