akkyie / AKPickerView

A simple yet customizable horizontal picker view.
MIT License
893 stars 106 forks source link

Fixed font won't update when scroll to item #73

Open draveness opened 8 years ago

draveness commented 8 years ago

Reproduce step:

  1. set highlighted font and highlighted color, in viewDidLoad

    _pickerView.font = [UIFont systemFontOfSize:26];
    _pickerView.highlightedFont = [UIFont systemFontOfSize:44];
    _pickerView.textColor = UIColorFromRGB(0x91EAFF);
    _pickerView.highlightedTextColor = UIColorFromRGB(0xffffff);
  2. call [_pickerView selectItem:2 animated:YES]; in viewDidAppear:

The first text color and font won't change