Как я могу изменить шрифт текста в UIPickerView в iOS 7?

Мне удалось изменить цвет шрифта, но мне также нужно изменить размер шрифта, как я могу это сделать? Вот мой код для изменения цвета,

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

ОБНОВЛЕНИЕ: это не сработало:

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

Ответы на вопрос(8)

Ваш ответ на вопрос