Iphone uipickerview with images

Is it possible to add as an element in uipickerview some images / icons instead of text? thank

+3
source share
1 answer

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.

+6
source

Source: https://habr.com/ru/post/1778728/


All Articles