表格视图单元格在滚动Swift时更改颜色

我正在制作一个使用彩色表格视图单元格将其他单元格分类的应用程序.我这样做是通过使用if else语句为单元格着色不同的颜色.但由于某种原因,当我启动应用程序时,我在桌面视图上上下滚动越多,其他细胞也随机改变颜色.这是我的自定义instrumentTableCell类中的代码:

@IBOutlet var nameLabel: UILabel?
@IBOutlet var descriptionLabel: UILabel?
@IBOutlet var thumbnailImage: UIImageView!

func configurateTheCell(recipie: Recipie) {
    self.nameLabel?.text = recipie.name
    self.descriptionLabel?.text = recipie.description
    self.thumbnailImage?.image = UIImage(named: recipie.thumbnails)
    if nameLabel!.text == "Instrument"
    {
        backgroundColor = UIColor.orangeColor()
        nameLabel?.textColor = UIColor.blackColor()
    }
    else if nameLabel!.text == "Optional addon"
    {
        backgroundColor = UIColor.cyanColor()
    }

}
func tableView(tableView: UITableView, heightForRowAtIndexPath indexPath: NSIndexPath) -> CGFloat {
    if nameLabel!.text == "Instrument"
    {
        return 20
    }
    else if nameLabel!.text == "Optional addon"
    {
        return 20
    }
    else
    {
        return 100
    }


}

这就是应用程序在推出时的样子:
《表格视图单元格在滚动Swift时更改颜色》

当用户滚动一点时:
《表格视图单元格在滚动Swift时更改颜色》

如果有人知道如何,我希望彩色单元格也更小,以便应用程序看起来更好.

最佳答案 您可以在cellForRowAtIndexPath委托方法中设置

  func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {

    let cell = tableView.dequeueReusableCellWithIdentifier("your identifier", forIndexPath: indexPath)
     if cell.recipie.name == "Instrument"
     {
      backgroundColor = UIColor.orangeColor()
      nameLabel?.textColor = UIColor.blackColor()
     }
    else if cell.recipie.name == "Optional addon"
     {
      backgroundColor = UIColor.cyanColor()
     }
   else{
    backgroundColor = UIColor.whiteColor()
   }
  return cell
 }
点赞