Как выровнять текст заголовка вида выбора в каждой строке справа? - PullRequest
3 голосов
/ 03 мая 2010

Как выровнять заголовок каждой строки в UIPickerview по праву?

Заранее спасибо.

1 Ответ

7 голосов
/ 03 мая 2010

Вы можете реализовать метод делегата pickerView:viewForRow:forComponent:reusingView: и вернуть из него экземпляр UILabel:

- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view{
    UILabel* label = (UILabel*)view;
    if (view == nil){
       label= [[UILabel alloc] initWithFrame:CGRectMake(0, 0, 190, 44)];

       label.textAlignment = UITextAlignmentRight;
       //Set other properties if you need like font, text color etc
       ...
    }
    label.text = [self textForRow:row forComponent:component];
    return label;
}
...