In der Delegate-Methode gibt es eine elegantere Funktion:
Ziel 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;
}
Wenn Sie auch die Farben der Auswahlleiste ändern möchten, musste ich UIViews
der Ansicht, die UIPickerView
die 35 Punkte voneinander entfernt enthält , 2 separate hinzufügen , um eine Auswahlhöhe von 180 zu erreichen.
Swift 3:
func pickerView(_ pickerView: UIPickerView, attributedTitleForRow row: Int, forComponent component: Int) -> NSAttributedString? {
let string = "myString"
return NSAttributedString(string: string, attributes: [NSForegroundColorAttributeName:UIColor.white])
}
Swift 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])
}
Denken Sie daran, wenn Sie die Methode verwenden: Sie müssen sie nicht implementieren, titleForRowInComponent()
da sie bei der Verwendung nie aufgerufen wird attributedTitleForRow()
.