更改UITableView背景颜色

时间:2017-01-06 15:28:28

标签: ios swift uitableview

我知道之前已经问过这个问题,但我找到的所有解决方案都失败了,我尝试使用" background = nil"方法,我已经尝试覆盖func UIColor,并且这些方法不起作用。当我运行我的应用程序时,它有一个红色背景,但表视图中的所有单元格都有白色背景。我没有使用任何原型细胞。我还改变了视图和部分索引中的背景颜色。

2 个答案:

答案 0 :(得分:1)

您可以尝试在cellForRowAtIndexPath中使用“cell.backgroundColor”。 _

答案 1 :(得分:1)

请试试这个: -

cell.backgroundColor = UIColor.clearColor()

在UITableViewDataSource协议实现中

cellForRowAtIndexPath