gpt4 book ai didi

ios - uitableviewcell 背景颜色上的快速更改标签

转载 作者:搜寻专家 更新时间:2023-11-01 06:18:28 26 4
gpt4 key购买 nike

我有带有自定义单元格的 UItableview 我需要在选择此行时更改标签背景颜色,但向下滚动时会重复标签颜色

enter image description here

最佳答案

您可以像这样子类化您的 Cell(然后 cellForRow 将不负责更新颜色,只负责设置默认颜色)。

class YourTableViewCellClass: UITableViewCell {

@IBOutlet weak var yourLabel: UILabel!

override func setSelected(_ selected: Bool, animated: Bool) {
if(selected) {

self.contentView.backgroundColor = UIColor.red //or what you want as your cell bg color
self.yourLabel.backgroundColor = UIColor.green //or what you want

} else {

self.contentView.backgroundColor = UIColor.white //or what you want as your cell bg color
self.yourLabel.backgroundColor = UIColor.red //or what you want
}
} }

关于ios - uitableviewcell 背景颜色上的快速更改标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39139281/

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