0

I am seeing that the way to shrink the width of the UIPickerView is to put it in a resized UIView. But the examples are at design time. At run-time(objective-c), how do you place a UIPickerView in a resized UIView, as I am doing this to 4 of them to be side by side ?

thanks

jdl
  • 6,151
  • 19
  • 83
  • 132

1 Answers1

0

you can use picker.transform = CGAffineTransformMakeScale(0.7, 0.6); something like this and try... This will reduce the width as well height ... Try changing the values in the above scale and try it.. and also check this

Community
  • 1
  • 1