vote up 3 vote down star
1

Is it possible to change the height of UIPickerView? Some applications seem to have shorter PickerViews but setting a smaller frame doesn't seem to work and the frame is locked in Interface Builder.

flag

5 Answers

vote up 2 vote down check

It seems obvious that Apple doesn't particularly invite mucking with the default height of the UIPickerView, but I have found that you can achieve a change in the height of the view by taking complete control and passing a desired frame size at creation time, e.g:

smallerPicker = [[UIPickerView alloc] initWithFrame:CGRectMake(0.0, 0.0, 320.0, 120.0);

You will discover that at various heights and widths, there are visual glitches. Obviously, these glitches would either need to be worked around somehow, or choose another size that doesn't exhibit them.

link|flag
This works for you? All UIPickerViews I instantiate seem to be locked to a height of 215... – Andy Bourassa Mar 4 at 18:30
It works for me. Are you specifying the shortened height in the initWithFrame method, as I described? They do tend to fight to stay a certain height, but once I initialized with a short frame, it worked. If you still can't get it to work I'll see if I can excerpt a sample. – danielpunkass Mar 8 at 18:00
vote up 0 vote down

As far as I know, it's impossible to shrink the UIPickerView. I also haven't actually seen a shorter one used anywhere. My guess is that it was a custom implementation if they did manage to shrink it.

link|flag
vote up 0 vote down

See my answer to this question: UIPicker sizing in landscape mode

link|flag
vote up 0 vote down

I have found that you can edit the size of the UIPickerView - just not with interface builder. open the .xib file with a text editor and set the size of the picker view to whatever you want. Interface builder does not reset the size and it seems to work. I'm sure apple locked the size for a reason so you'll have to experiment with different sizes to see what works.

link|flag
vote up -2 vote down

it is obviously easy to shrink any control, including the UIPickerView. Just put it inside a view and resize that view. Easy as hell. You can even trim all control parts leaving just the wheel itself.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.