Comment puis-je changer la police du texte dans UIPickerView dans iOS 7?

J'ai pu changer ma couleur de police, mais j'ai aussi besoin de changer la taille de police, comment puis-je le réaliser? Voici mon code pour chaning la couleur,

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

    return attString;
 }

Mise à JOUR: cela n'a pas fonctionné:

 NSAttributedString *attString = [[NSAttributedString alloc] initWithString:title attributes:@{NSForegroundColorAttributeName:[UIColor whiteColor], NSFontAttributeName: [UIFont fontWithName:@"HelveticaNeue-Light" size:40]}];
InformationsquelleAutor user3121912 | 2013-12-20