Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

So I have a uipickerview with rows that only contain the number 0-24 and it looks a bit silly since the numbers are left aligned leaving a huge gap on the right of the pickerview.

Is there an easy way to center align text in a uipickerview?

share|improve this question
1  
It will still look silly if the numbers are centered. What are the numbers? Why not write for example "24 hours" instead of "24". It may be redundant but it looks better. – Matthias Bauch Feb 18 '11 at 8:23
@fluchtpunkt Actually a good idea.. it does look quite a bit better – Msencenb Feb 18 '11 at 17:53

6 Answers

up vote 47 down vote accepted
- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view
{
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 300, 37)];
    label.text = [NSString stringWithFormat:@"something here"];
    label.textAlignment = UITextAlignmentCenter;
    label.backgroundColor = [UIColor clearColor];
    [label autorelease];
    return label;
}

or something like this.

share|improve this answer
I also use this to change the font color based on which row it is, like this: if (row == 0) { [label setTextColor:[UIColor redColor]]; } else { [label setTextColor:[UIColor darkTextColor]]; } – Structurer Oct 17 '12 at 10:51
Now the text is not bold? – To1ne Feb 17 at 19:22
@To1ne I don't get you. – Robin Feb 18 at 3:55
By default the text in a UIPicker is bold. With this approach you should add the line label.font = [UIFont boldSystemFontOfSize:[UIFont labelFontSize]]; to get a similar appearance. – To1ne Feb 21 at 12:55
Good, but should be reusing the view instead of creating a new label on every invocation. – wcochran Mar 12 at 17:13

You can implement this delegate method, which returns a CGFloat

- (CGFloat)pickerView:(UIPickerView *)pickerView widthForComponent:(NSInteger)component

This is called on the picker view to determine row width.

share|improve this answer
I actually did use this technique to make the picker smaller... I think it looks better than just centering. That being said I'm going to mark the uiview subclass as teh correct answer since the original title was about centering in a UIPickerView... but you're answer is very helpful too. Upvoted. – Msencenb Feb 18 '11 at 17:54

A little easier now in iOS 6... There's a new method you can implement to return an attributed string... And you can define alignment in attributed strings.

- (NSAttributedString *)pickerView:(UIPickerView *)pickerView attributedTitleForRow:(NSInteger)row forComponent:(NSInteger)component {
    NSString *text = [NSString stringWithFormat:@"R%d C%d", row, component];
    NSMutableAttributedString *as = [[NSMutableAttributedString alloc] initWithString:text];
    NSMutableParagraphStyle *mutParaStyle=[[NSMutableParagraphStyle alloc] init];
    mutParaStyle.alignment = NSTextAlignmentCenter;
    [as addAttribute:NSParagraphStyleAttributeName value:mutParaStyle range:NSMakeRange(0,[text length])];
    return as;
}
share|improve this answer

No property of picker having set alignment capability.

so you need to hard code for this.

see this code

- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)thePickerView {

    return 1;
}


- (NSInteger)pickerView:(UIPickerView *)thePickerView numberOfRowsInComponent:(NSInteger)component 
{
    return 25;  

}

- (NSString *)pickerView:(UIPickerView *)thePickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component {

NSString *title=[NSString stringWithFormat:@"         %i",row];//here you give extra spaces.
    return title;
}
share|improve this answer

Remember, the view in

- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view

is actually a UITableViewCell, so you can work with it like:

- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view
{
    static NSString *cellIdentifier = @"pickerViewCell";
    UITableViewCell *cell = (UITableViewCell*)view;

    if(cell==nil)
    {
        cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:cellIdentifier] autorelease];
        /** customize the cell **/
    }

    /** set the label **/
    cell.textLabel.text = [dataSource objectAtIndex:row];

    return cell;
}
share|improve this answer
2  
With that delegate method you can return any UIView you like. In the accepted answer it is suggested to use a simple UILabel and set the text alignment to center. That works. But if you want something different like a list of minutes in a centered column, but so their right edges line up (not just simply centered), then a UITableViewCell laid out to your liking is an excellent suggestion. +1 – Craig B Aug 24 '12 at 17:16
Most elegant solution! – To1ne Feb 17 at 19:26

Below one also working fine -

- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view
{
    UILabel *lbl = [[UILabel alloc] initWithFrame:CGRectMake(0.0f, 0.0f, [pickerView rowSizeForComponent:component].width, [pickerView rowSizeForComponent:component].height)];
    lbl.text = [reservePickerArray objectAtIndex:row];
    lbl.adjustsFontSizeToFitWidth = YES;
    lbl.textAlignment=UITextAlignmentCenter;
    lbl.font=[UIFont systemFontOfSize:20];
    return lbl;
}

Cheers!!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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