Como posso alterar a fonte do texto no UIPickerView no iOS 7?

Consegui mudar a cor da fonte, mas também preciso alterar o tamanho da fonte, como posso fazer isso? Aqui está o meu código para observar a cor,

 - (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;
 }

UPDATE: isso não funcionou:

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

questionAnswers(8)

yourAnswerToTheQuestion