为了增强可见性,我如何在tableview中具有浅灰色背景颜色。这个tableview显示了一个sqlite表。
提前致谢
答案 0 :(得分:2)
你可以使用模数来检查indexPath.row是否可以被2整除以设置cellForRowAtIndexPath中单元格的样式:
if (indexPath.row % 2 == 0) {
cell.backgroundColor = [UIColor grayColor];
} else {
cell.backgroundColor = [UIColor whiteColor];
}