UITableView单元格背景颜色

UITableView单元格背景颜色

本文介绍了UITableView单元格背景颜色的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何为UITableView
中的单元格设置不同的背景颜色(特别是七个单元格的彩虹颜色)

how to set different background colors for cells in a UITableView(specifically rainbow color for seven cells)

推荐答案

设置 backgroundColor 属性:

cell.backgroundColor = [UIColor redColor];

请注意,必须在 tableView:willDisplayCell:forRowAtIndexPath中设置backgroundColor: 方法(来自 UITableViewCell参考):

Note that the backgroundColor must be set in the tableView:willDisplayCell:forRowAtIndexPath: method (from UITableViewCell reference):

使用indexPath参数实现彩虹效果。

Use the indexPath parameter to achieve the rainbow effect.

这篇关于UITableView单元格背景颜色的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-24 09:40