OStack程序员社区-中国程序员成长平台

标题: ios - 选择 UITableViewCell 时标签背景颜色发生变化 [打印本页]

作者: 菜鸟教程小白    时间: 2022-12-13 03:03
标题: ios - 选择 UITableViewCell 时标签背景颜色发生变化

我在 UITableViewCell 中添加了一个自定义标签。它的背景颜色为红色,字体为白色。当我选择任何单元格时,所选单元格的标签背景颜色变为灰色。

供引用,我正在添加代码

let lblUnreadCount = cell?.viewWithTag(3) as! UILabel
let size:CGFloat = 20.0
lblUnreadCount.bounds = CGRect(x: 0.0, y: 0.0, width: 28.0, height: 20.0)
lblUnreadCount.layer.cornerRadius = size / 2
lblUnreadCount.layer.borderWidth = 1.0
lblUnreadCount.layer.backgroundColor = UIColor.red.cgColor
lblUnreadCount.layer.borderColor = UIColor.red.cgColor

作为引用,我还添加了一个屏幕截图。 enter image description here



Best Answer-推荐答案


改变的不是标签的背景,而是单元格本身。在你的 cellForRow 方法中,在你 dequeued 单元格之后,使用这个

cell.selectionStyle = .none

关于ios - 选择 UITableViewCell 时标签背景颜色发生变化,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46904167/






欢迎光临 OStack程序员社区-中国程序员成长平台 (https://ostack.cn/) Powered by Discuz! X3.4