我在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

供参考,我还添加了屏幕截图。
ios - 选择UITableViewCell时标签背景颜色更改-LMLPHP

最佳答案

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

cell.selectionStyle = .none

09-16 17:30