[ios] iOS 7에서 UIPickerView의 텍스트 색상을 어떻게 변경합니까?

나는 알고 있어요 pickerView:viewForRow:forComponent:reusingView방법 만 사용하는 경우 view가에 전달을 reusingView:어떻게하면 다른 텍스트 색상을 사용하여 변경합니까? 사용 view.backgroundColor = [UIColor whiteColor];하면 뷰가 더 이상 표시되지 않습니다.



답변

대리자 메서드에는 더 우아한 함수가 있습니다.

목표 -C :

- (NSAttributedString *)pickerView:(UIPickerView *)pickerView attributedTitleForRow:(NSInteger)row forComponent:(NSInteger)component
{
    NSString *title = @"sample title";
    NSAttributedString *attString =
        [[NSAttributedString alloc] initWithString:title attributes:@{NSForegroundColorAttributeName:[UIColor whiteColor]}];

    return attString;
}

선택 막대 색상도 변경하려면 선택기 높이 180에 대해 35pt 간격으로을 UIViews포함하는 뷰에 2 개를 추가해야한다는 것을 알았습니다 UIPickerView.

스위프트 3 :

func pickerView(_ pickerView: UIPickerView, attributedTitleForRow row: Int, forComponent component: Int) -> NSAttributedString? {

    let string = "myString"
    return NSAttributedString(string: string, attributes: [NSForegroundColorAttributeName:UIColor.white])
}

스위프트 4 :

func pickerView(_ pickerView: UIPickerView, attributedTitleForRow row: Int, forComponent component: Int) -> NSAttributedString? {

    let string = "myString"
    return NSAttributedString(string: string, attributes: [NSAttributedStringKey.foregroundColor: UIColor.white])
}

Swift 4.2 :

func pickerView(_ pickerView: UIPickerView, attributedTitleForRow row: Int, forComponent component: Int) -> NSAttributedString? {

    let string = "myString"
    return NSAttributedString(string: string, attributes: [NSAttributedString.Key.foregroundColor: UIColor.white])
}

메소드를 사용할 때 기억하십시오.를 사용할 때 titleForRowInComponent()호출 되지 않으므로 구현할 필요가 없습니다 attributedTitleForRow().


답변

원본 게시물 : iOS7에서 datePicker의 글꼴 색상을 변경할 수 있습니까?

- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view
{
    UILabel *label = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, pickerView.frame.size.width, 44)];
    label.backgroundColor = [UIColor grayColor];
    label.textColor = [UIColor whiteColor];
    label.font = [UIFont fontWithName:@"HelveticaNeue-Bold" size:18];
    label.text = [NSString stringWithFormat:@" %d", row+1];
    return label;
}

// number Of Components
- (NSInteger)numberOfComponentsInPickerView:(UIPickerView *)pickerView
{
    return 1;
}

// number Of Rows In Component
- (NSInteger)pickerView:(UIPickerView *)pickerView numberOfRowsInComponent:   (NSInteger)component
{
    return 6;
}


답변

  1. 스토리 보드로 이동
  2. PickerView 선택
  3. Identity inspector (세 번째 탭)로 이동
  4. 사용자 정의 런타임 속성 추가
  5. KeyPath = textColor
  6. 유형 = 색상
  7. 값 = [선택한 색상]

스크린 샷


답변

Xamarin에서 UIPickerModelView 메서드 GetAttributedTitle을 재정의합니다.

public override NSAttributedString GetAttributedTitle(UIPickerView picker, nint row, nint component)
{
    // change text white
    string title = GetTitle (picker, row, component); // get current text from UIPickerViewModel::GetTitle
    NSAttributedString ns = new NSAttributedString (title, null, UIColor.White); // null = font, use current font
    return ns;
}


답변

그것은 나를 위해 작동합니다

pickerView.setValue(UIColor.yellow, forKeyPath: "textColor")


답변

두 가지 구성 요소를 사용 하는 pickerView 와 동일한 문제가 발생했습니다 . 내 솔루션은 몇 가지 수정 사항으로 위와 유사합니다. 두 개의 구성 요소를 사용하고 있기 때문에 두 개의 다른 배열에서 가져와야합니다.

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

    UILabel *label = [[UILabel alloc] init];
    label.backgroundColor = [UIColor blueColor];
    label.textColor = [UIColor whiteColor];
    label.font = [UIFont fontWithName:@"HelveticaNeue-Bold" size:18];

    //WithFrame:CGRectMake(0, 0, pickerView.frame.size.width, 60)];

    if(component == 0)
    {
        label.text = [countryArray objectAtIndex:row];
    }
    else
    {
        label.text = [cityArray objectAtIndex:row];
    }
    return label;
}


답변

Swift 4 (수락 된 답변에 대한 업데이트)

extension MyViewController: UIPickerViewDelegate{
    }

    func pickerView(_ pickerView: UIPickerView, attributedTitleForRow row: Int, forComponent component: Int) -> NSAttributedString? {
        return NSAttributedString(string: "your-title-goes-here", attributes: [NSAttributedStringKey.foregroundColor: UIColor.white])
    }
}