gpt4 book ai didi

ios - 如何更改分组类型 UITableView 中标题的字体颜色?

转载 作者:IT王子 更新时间:2023-10-29 07:40:22 26 4
gpt4 key购买 nike

我有一个分组类型的表格 View ,它看起来很酷。

但是,如果我将表格的背景颜色更改为黑色,标题就会变得不清楚。

是否可以更改字体颜色及其样式以使其更具可读性?我应该实现 tableView:viewForHeaderInSection: 方法吗?

最佳答案

如果您只需要更改标题上的颜色或字体,请使用 tableView: willDisplayHeaderView: forSection:。这是一个 swift 的例子:

swift v5:

override public func tableView(_ tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {

if let view = view as? UITableViewHeaderFooterView {
view.backgroundView?.backgroundColor = UIColor.blue
view.textLabel?.backgroundColor = UIColor.clear
view.textLabel?.textColor = UIColor.white
}
}

原文:

override func tableView(tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {

if let view = view as? UITableViewHeaderFooterView {
view.backgroundView?.backgroundColor = ThemeBlue
view.textLabel.backgroundColor = UIColor.clearColor()
view.textLabel.textColor = UIColor.whiteColor()
}

}

关于ios - 如何更改分组类型 UITableView 中标题的字体颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7105747/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com