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

时间:2016-07-20 13:23:29

标签: swift uitableview colors cell visual-glitch

我正在创建一个使用彩色表格视图单元格将其他单元格分类的应用程序。我这样做是通过使用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
    }


}

这就是推出时应用的样子: when the app is launched

VS。当用户滚动一点时: after scrolled around

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

1 个答案:

答案 0 :(得分:2)

您可以在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
 }