gpt4 book ai didi

ios - Swift 交替 UITableViewCell 渐变颜色

转载 作者:可可西里 更新时间:2023-11-01 01:08:11 25 4
gpt4 key购买 nike

我曾经在 tableView willDisplay cell 方法中使用这段代码,但它没有准确地交替颜色 - 它几乎做到了,但有时仍然搞砸了 1 或 2 个相同的颜色和我不确定。

我发现一些建议在我的自定义 UITableViewCell 类中调用 awakeFromNib 方法中的所有方法,所以我像这样移动了所有内容:

class SectionTableViewCell: UITableViewCell {
@IBOutlet weak var lblName: UILabel!
@IBOutlet weak var lblValue: UILabel!

var cellGradient_1: CAGradientLayer = CAGradientLayer()
var cellGradient_2: CAGradientLayer = CAGradientLayer()

override func awakeFromNib() {
super.awakeFromNib()
// Initialization code
self.layer.insertSublayer(cellGradient_1, at: 0)
self.layer.insertSublayer(cellGradient_2, at: 0)
}

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

// Configure the view for the selected state
}

override func layoutSubviews() {
super.layoutSubviews()
cellGradient_1.frame = self.bounds
cellGradient_2.frame = self.bounds
}

}

现在,在我的 tableView cellForRowAt 中,我进行以下检查:

let cell = tableView.dequeueReusableCell(withIdentifier: "Section", for: indexPath) as! SectionTableViewCell
if (indexPath.row%2 == 0) {
cell.cellGradient_1.colors = theme.childColor_1 //Some gradient color
}
else{
cell.cellGradient_2.colors = theme.childColor_2 //Some gradient color
}

它们现在都是第一种颜色,靠近底部的 1 是第二种颜色。我在 nib 上做错了吗?有没有不同的方法来设置渐变的颜色?任何帮助将不胜感激。

编辑:看起来它在初始加载时有效,但一旦表格重新加载或滚动发生,除了 2 或 3 之外,所有单元格的渐变都会更改为初始值。

最佳答案

你使用两层,第一层覆盖第二层。
要解决这个问题,只需删除第二层并将 tableView cellForRowAt 中的代码更改为:

let cell = tableView.dequeueReusableCell(withIdentifier: "Section", for: indexPath) as! SectionTableViewCell
if (indexPath.row%2 == 0) {
cell.cellGradient_1.colors = theme.childColor_1 //Some gradient color
}
else{
cell.cellGradient_1.colors = theme.childColor_2 //Some gradient color
}

(我用 cell.cellGradient_1 替换了 cell.cellGradient_2)

关于ios - Swift 交替 UITableViewCell 渐变颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52940219/

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