gpt4 book ai didi

ios - UITableView 部分标题颜色行为不当

转载 作者:行者123 更新时间:2023-11-28 09:02:56 24 4
gpt4 key购买 nike

我更改了自定义 UITableViewCell 部分标题的颜色,当我在 tableView 中滚动时,它改变了它的 alpha,我猜。有些是透明的,有些是纯色的。

怎么了?

// Customize HeaderView of Sections
func tableView(tableView: UITableView, willDisplayHeaderView view: UIView, forSection section: Int) {
// This changes the header background
view.tintColor = UIColor(hue: 0.13, saturation: 0.13, brightness: 0.13, alpha: 1)

// Gets the header view as a UITableViewHeaderFooterView and changes the text colour
var headerView: UITableViewHeaderFooterView = view as! UITableViewHeaderFooterView
headerView.textLabel.textColor = UIColor.whiteColor()
}

最佳答案

我强烈建议用这种方法配置标题 View :

func tableView(_ tableView: UITableView, viewForHeaderInSection section: Int) -> UIView?

除了主要配置外观之外,我会将 willDisplayHeader... 用于其他目的。

关于ios - UITableView 部分标题颜色行为不当,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31609511/

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