iOS 8 UITableView在未选中时淡出Checkmarks

时间:2015-02-02 11:30:41

标签: ios uitableview swift uistoryboard

在没有选择UITableViewCell的时候,有没有给Checkmarks一个alpha或颜色?默认情况下,iOS没有选中未选中行的复选标记。更改复选标记的颜色很简单,但我不确定iOS是否支持在未选择UITableViewCell时显示淡出复选标记的功能。

我对需要外部图像的解决方案不感兴趣。

1 个答案:

答案 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)
}