应用于控制器的背景未应用于故事板swift中的表格视图单元格

问题描述 投票:1回答:3

我有一个故事板,其中一个背景图像放在桌子上面。我的问题是背景图像应用于表而不是表格的单元格,它们仍然是白色的。

我做错了什么?请帮忙

ios uitableview swift3 storyboard
3个回答
0
投票

cellForRowAtIndexpath方法中,使用

cell.backgroundColor = UIColor.clear

2
投票

您需要将背景颜色设置为tableview单元格的清晰颜色以及内容视图。


1
投票

您应该通过下面的委托方法清除单元格的背景颜色。

func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell,
               forRowAt indexPath: IndexPath) {
    cell.backgroundColor = UIColor.clear
}
© www.soinside.com 2019 - 2024. All rights reserved.