Yes, it is absolutely possible. u need to handle pickerView delegate method
- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row
forComponent:(NSInteger)component reusingView:(UIView *)view
here you just return the user view (maybe anything UIImage UILabel)
and set the userInteractionEnable property to no to customize the view.
source
share