有没有办法在tableView
上为每个其他单元格着色一种颜色?我试着查看tableView
的属性,但无法找到任何内容。
我想这样:
tableview
cell - white
cell - gray
cell - white
cell - gray
等...
答案 0 :(得分:2)
一行代码,如果您需要
cell.backgroundColor = indexPath.row % 2 == 0 ? .white : .gray
答案 1 :(得分:0)
最简单的方法是在cellForRowAt
函数中以编程方式执行此操作:
if indexPath.row % 2 == 0 {
cell.backgroundColor = UIColor.white
} else {
cell.backgroundColor = UIColor.gray
}