How to disable UIPickerView (Objective-C)?
Use this to make it not interactable
[pickerObj setUserInteractionEnabled:NO];
and this to
[pickerObj setAlpha:.6];
fade the opacity so it looks non-interactable
Set the picker's userInteractionEnabled
to NO.