Swift 交替 UITableViewCell 渐变颜色

Swift Alternating UITableViewCell gradient color

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

我发现一些建议在我的自定义 UITableViewCell class 中调用 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 是我做错了什么吗?有没有不同的方法来设置渐变的颜色?任何帮助将不胜感激。

编辑:看起来它在初始加载时有效,但一旦 table 重新加载或滚动发生,除 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)