jdl
jdl

Reputation: 6323

At run-time, how can you adjust the dimensions of the UIPickerView UI window?

During run-time, how can you adjust the dimensions of the UIPickerView UI window?

Thanks

Upvotes: 1

Views: 67

Answers (1)

0x90
0x90

Reputation: 6259

The UIPickerView's height and width are unchangeable in iOS. This is mostly due to Apple's human interface guidelines guaranteeing consistency from the user's standpoint.

All you can do is change it's position on the screen.

The only way to create a UIPickerView with different dimensions would be to write your own Picker from scratch.

Upvotes: 2

Related Questions