gpt4 book ai didi

iOS:当单元格背景更改时,UITableViewCell 的侧面显示不同的颜色(Xcode 8、Swift 3)

转载 作者:行者123 更新时间:2023-11-30 12:21:31 25 4
gpt4 key购买 nike

在实现 UITableView 时,我添加了背景图像并将表格 View 设置为透明。但是,即使我将表格 View 单元格更改为不同的颜色(以便更好地查看文本),表格的两侧仍然保持清晰,如下图所示:Table View Cell .

我添加的用于获取 TableView 内部部分的代码:

func tableView(_ tableView: UITableView, willDisplay cell: UITableViewCell, forRowAt indexPath: IndexPath) {
cell.backgroundColor = UIColor(white: 1, alpha: 0.25)
cell.accessoryView?.backgroundColor = UIColor(white: 1, alpha: 0.25)
cell.contentView.backgroundColor = UIColor(white: 1, alpha: 0.25)
cell.tintColor = UIColor(white: 1, alpha: 0.25)
}

viewWillAppear中:

self.tableView.backgroundColor = UIColor(white: 1, alpha: 0.25)

我不知道为什么两侧不显示为相同的颜色。我认为这与附件按钮有关,但当尝试更改它时,什么也没有改变。

最佳答案

contentView 没有覆盖整个单元格。尝试将其背景颜色设置为透明颜色。然后只有单元格的背景 View 会显示出来。

关于iOS:当单元格背景更改时,UITableViewCell 的侧面显示不同的颜色(Xcode 8、Swift 3),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44739105/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com