views:

14

answers:

1

Hi all.. it's possible reduce or change the font of the items of the uipickerview? thanks in advance!

+2  A: 

Implement pickerView:viewForRow:forComponent:reusingView: method in picker's delegate instead of pickerView:titleForRow:forComponent:. You'll be able to create UILabel object there and setup all necessary properties for it.

Vladimir