在没有选择UITableViewCell的时候,有没有给Checkmarks一个alpha或颜色?默认情况下,iOS没有选中未选中行的复选标记。更改复选标记的颜色很简单,但我不确定iOS是否支持在未选择UITableViewCell时显示淡出复选标记的功能。
我对需要外部图像的解决方案不感兴趣。
答案 0 :(得分:2)
您可以在tintColor
上设置UITableViewCell
以更改透明度。
cell.accessoryType = UITableViewCellAccessoryType.Checkmark
cell.tintColor = UIColor(red: 0, green: 0, blue: 0, alpha: 0.2)
所选单元格的tintColor
的字母设置为1
。
if selected[indexPath.row] {
cell.tintColor = UIColor(red: 0, green: 0, blue: 0, alpha: 1.0)
} else {
cell.tintColor = UIColor(red: 0, green: 0, blue: 0, alpha: 0.2)
}