UIPickerview customisation

不想你离开。 提交于 2019-11-28 01:46:43

问题


I would like to do some customization of the UIPickerView.

End Goal: have a picker view rotating a few icon sized images.

firstly i would like to change the black/grey boarder surrounding the spindle to a transparent colour. i.e. [UIColor clearColor];

Then shrink the picker view down so it is relatively small, (probably around 40 x 40 pixels) Experimenting with this is IB did not make it seem easy.

Finally change the view returned to the picker for each section. This i think is easy with

pickerView:viewForRow:forComponent:reusingView:

The rest, not sure if it is possible or if i am going to have to delve into some of the core animation/graphics (or find a different way to do what i want).


回答1:


UIPickerView is not customizable. At all.

You'll have to go custom for what you want.

Perhaps the easiest way would be to mess with an UIScrollView with vertical pagination enabled, and try to get it to act like you want. Maybe overlap an UIImageView with it and wrap the whole thing up in a custom view.




回答2:


You can also "customize" the outer bezel of the picker by simply placing a UIImageView over the top with a hole cut out for the working parts. Apple does this with the Clock app.



来源:https://stackoverflow.com/questions/901545/uipickerview-customisation

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