Comment changer la couleur du texte dans un UIPickerView sous iOS 7?
je suis au courant de la méthode pickerView:viewForRow:forComponent:reusingView
, mais en utilisant le view
il passe dans reusingView:
Comment puis-je le changer pour utiliser une couleur de texte différente? Si j'utilise view.backgroundColor = [UIColor whiteColor];
aucune des vues n'apparaît plus.
7 réponses
il y a une fonction dans la méthode delegate qui est plus élégante:
Objectif-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;
}
si vous voulez changer les couleurs de la barre de sélection aussi bien, j'ai trouvé que j'ai dû ajouter 2 séparé UIViews
à la vue contenant le UIPickerView
, espacés de 35 pts pour une hauteur de picker de 180.
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])
}
rappelez-vous quand vous utilisez la méthode: vous n'avez pas besoin de mettre en œuvre titleForRowInComponent()
comme il n'est jamais appelé en utilisant attributedTitleForRow()
.
message Original ici: puis-je changer la couleur de la police de la datePicker dans iOS7?
- (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;
}
- Aller au storyboard
- Sélectionnez PickerView
- aller à L'Inspecteur D'identité (3e onglet)
- Ajouter L'Attribut Runtime Défini Par L'Utilisateur
- chemin d'accès clé = textColor
- Type = Couleur
- valeur = [Couleur de votre choix]
dans Xamarin, remplacer la UIPickerModelView méthode 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;
}
j'ai rencontré le même problème avec un pickerView en utilisant deux composants. Ma solution est similaire à ci-dessus avec quelques modifications. Parce que j'utilise deux composants, il est nécessaire de tirer à partir de deux tableaux différents.
- (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;
}
- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view {
UILabel* pickerLabel = [[UILabel alloc] initWithFrame:CGRectMake(0, 0, pickerView.frame.size.width, 37)];
pickerLabel.text = @"text";
pickerLabel.textColor = [UIColor redColor];
return pickerLabel;
}
Swift 4 (Mise à jour de la réponse acceptée)
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])
}
}