Center UIPickerView Text

后端 未结 9 1424
清歌不尽
清歌不尽 2020-12-25 10:27

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 picke

9条回答
  •  被撕碎了的回忆
    2020-12-25 11:24

    - (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 = NSTextAlignmentCenter; //Changed to NS as UI is deprecated.
        label.backgroundColor = [UIColor clearColor];
        [label autorelease];
        return label;
    }
    

    or something like this.

提交回复
热议问题