vote up 3 vote down star
1

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.

flag

9 Answers

vote up 1 vote down

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.

link|flag
vote up 0 vote down

I'm fairly certain that the UIPicker comes in one size, which you can't change. Would be interested to hear different.

link|flag
vote up 1 vote down

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?

link|flag
vote up 1 vote down

You can edit the size by opening the .xib file in TextEdit and changing the size of the UIPickerView.

link|flag
vote up 0 vote down

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 .....

picker = [[UIPickerView alloc] initWithFrame:CGRectZero];
picker.delegate = self;
picker.dataSource = self;
picker.showsSelectionIndicator = NO;


//Resize the picker, rotate it so that it is horizontal and set its position
CGAffineTransform rotate = CGAffineTransformMakeRotation(-1.57);  
rotate = CGAffineTransformScale(rotate, .46, 2.25);
CGAffineTransform t0 = CGAffineTransformMakeTranslation(3, 22.5);
picker.transform = CGAffineTransformConcat(rotate,t0);
[self.view addSubview:picker];
[picker release];

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

UIImageView *uiiv = [[UIImageView alloc] 
					 initWithImage:[UIImage									imageNamed:@"problem_bg.png"]];
uiiv.userInteractionEnabled = NO;
uiiv.opaque = YES; //for performance
[self.view addSubview:uiiv];
[uiiv release];

//UIPickerView delegate method

-(UIView *) pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)rowforComponent:(NSInteger)component reusingView:(UIView *)view {

UIView *viewForRow = [[[UIView alloc] initWithFrame:CGRectMake(0, 0, 100, 280)] autorelease];
UIImageView *img = [[UIImageView alloc] initWithImage:[UIImage imageNamed:@"myimage.png"]];

img.frame = CGRectMake(0, 0, 102,280);
img.opaque = YES;
[viewForRow addSubview:img];
[img release];
UILabel *label;

UIFont *font = [ UIFont fontWithName:@"Helvetica"  size:20];

label = [[[UILabel alloc] initWithFrame:CGRectMake(10, 20, 270, 100)] autorelease];

label.text = @"I am a label";
label.textAlignment = UITextAlignmentCenter;
label.textColor = [UIColor blackColor];
label.font = font;
label.backgroundColor = [UIColor clearColor];
label.opaque = NO;
    [viewForRow addSubview:label];

CGAffineTransform rotate = CGAffineTransformMakeRotation(1.57);  
    [viewForRow setTransform:rotate]; 
return viewForRow;

}

This gives a much smaller, horizontal picker with a nice look and feel. I hope this helps someone.

link|flag
vote up 0 vote down

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?

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

there is no such thing: "one line of code".

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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