iphone uipickerview with images

跟風遠走 提交于 2019-12-06 06:38:02

问题


it's possible add as item in the uipickerview some images/icons instead of text? thanks


回答1:


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 simply return custom view(could be anything UIImage UILabel)

and set userInteractionEnable property to no for customize view..



来源:https://stackoverflow.com/questions/4366974/iphone-uipickerview-with-images

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!