如何在 swift 中更改 tableView 部分中的文本颜色
Posted
技术标签:
【中文标题】如何在 swift 中更改 tableView 部分中的文本颜色【英文标题】:How to change text color in tableView section in swift 【发布时间】:2015-05-29 08:07:46 【问题描述】:如何在 swift 中更改 tableview 中部分的文本颜色。
viewForHeaderInSection
【问题讨论】:
您会发现这些手册很有用! SO不是代理谷歌。 developer.apple.com/library/ios/documentation/UIKit/Reference/…. 【参考方案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
希望这会对你有所帮助。
【讨论】:
以上是关于如何在 swift 中更改 tableView 部分中的文本颜色的主要内容,如果未能解决你的问题,请参考以下文章
swift中tableView的单元格高度扩展时更改标签文本
通过点击状态栏滚动到顶部 TableView 不起作用(有许多子视图)SWIFT
Swift - 在 tableView.selectRow 中更改背景颜色