I am trying to develop an app with a UIPicker in landscape mode, taking up (almost) the entire width of the screen (with 5 or 6 components). Can you please tell me how to set the size of UIPicker. Thank you very much for your help.
|
|
You can't. UIPickerView's size is constant. UPDATE: It turns out you can resize an UIPickerView. The trick is to place it inside another (smaller) UIView, and resize that view. I haven't tried this yet. UPDATE 2: This method does not resize the UIPickerView, but rather crops it. It might or might not be what you're looking for, but AFAIK, there's no way to truly resize an UIPickerView, and this is as close as it gets. It doesn't look that bad. |
|||
|
|
|
|
I'm fairly certain that the UIPicker comes in one size, which you can't change. Would be interested to hear different. |
||
|
|
|
|
Apple has a Picker that they use when you do a drop-down list in Safari, in landscape mode. Any ideas on what they use? |
||
|
|
|
|
You can edit the size by opening the .xib file in TextEdit and changing the size of the UIPickerView. |
||
|
|
|
|
Actually, I resize my pickers for almost every app. I do not like that they take up the entire screen. Here is the method that I am using: (note that I am also rotating the picker to be horizontal) in viewDidLoad .....
Then, I like to add a background image for my view that covers up the grey bars (which are now on the top and bottom) of the UIPicker: //Create the overlay to superimpose ontop of the picker //In this case, the image is the size of the screen with a transparent area the size of the //UIPickerView cut out in the middle
//UIPickerView delegate method -(UIView *) pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)rowforComponent:(NSInteger)component reusingView:(UIView *)view {
} This gives a much smaller, horizontal picker with a nice look and feel. I hope this helps someone. |
|||
|
|
|
|
im wondering if ne one knows is this even legal in according to apples ways of doing things on the iphone , i dont want my app to get rejected for something stupid like this, so does ne one know for sure? |
||
|
|
|
|
Depth-of-field apps use horizontal pickers and they are full approved by Apple http://images.macworld.com/images/reviews/graphics/143531-dr%5Fdof%5Foriginal.jpg The amount of work and code is obsurd, though. I sure would like to see a framework with ONE line of code that would do them. |
||
|
|
|
|
there is no such thing: "one line of code". |
||
|
|
|
|
Charles - I don't suppose you would be willing to post a small project that shows how you resized the picker? I am having trouble getting your code to work properly. Any help would be appreciated. |
||
|
|
