我在 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
作为引用,我还添加了一个屏幕截图。
Best Answer-推荐答案 strong>
改变的不是标签的背景,而是单元格本身。在你的 cellForRow 方法中,在你 dequeued 单元格之后,使用这个
cell.selectionStyle = .none
关于ios - 选择 UITableViewCell 时标签背景颜色发生变化,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/46904167/
|