如何制作替换行tableview具有浅灰色背景

时间:2013-12-01 13:54:25

标签: uitableview

为了增强可见性,我如何在tableview中具有浅灰色背景颜色。这个tableview显示了一个sqlite表。

提前致谢

1 个答案:

答案 0 :(得分:2)

你可以使用模数来检查indexPath.row是否可以被2整除以设置cellForRowAtIndexPath中单元格的样式:

if (indexPath.row % 2 == 0) {
  cell.backgroundColor = [UIColor grayColor];
} else {
  cell.backgroundColor = [UIColor whiteColor];
}