Make cell view unavailable color

83 Views Asked by At

enter image description here

How to make cell unavailable view like in Settings app on the screen?

1

There are 1 best solutions below

0
On BEST ANSWER

Just add below code in cellForRowAt indexPath:

cell.isUserInteractionEnabled = false

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