在我的表格 View 中,我有一个像这样的单元格:
当它被选中并且橙色矩形变为灰色时。但我希望它保持橙色。我已经设置了色调,但它似乎没有任何区别。所以请帮助我。
Best Answer-推荐答案 strong>
当一个 UITableViewCell 被选中时,操作系统会遍历 View 层级并将所有 subview 的 backgroundColor 更改为 .clearColor() 使其能够正确显示背景 View 。
您可以创建一个自定义 UIView 来抵抗这种变化。像这样的:
class NeverClearView: UIView {
override var backgroundColor: UIColor? {
get {
return super.backgroundColor
}
set {
if newValue != .clearColor() {
super.backgroundColor = newValue
}
}
}
}
关于ios - 如何在表格 View 单元格中设置色调/突出显示颜色?,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/35713779/
|