使单元格视图不可用颜色

时间:2018-08-02 07:20:56

标签: ios swift human-interface

enter image description here

如何在屏幕上的“设置”应用中使单元格不可用?

1 个答案:

答案 0 :(得分:0)

只需在cellForRowAt indexPath中添加以下代码:

cell.isUserInteractionEnabled = false

for view in cell.subviews {
    view.alpha = 0.5
}