UIPickerView は、ピッカー ビュー アイテムに対する NSAttributedString の使用をサポートしなくなったようです。誰でもこれを確認できますか?ファイルで見つけましNS_AVAILABLE_IOS(6_0)
たが、これは問題ですか?UIPickerView.h
これを回避する方法はありますか、それとも運が悪いのでしょうか?
- (NSString *)pickerView:(UIPickerView *)pickerView titleForRow:(NSInteger)row forComponent:(NSInteger)component;
- (NSAttributedString *)pickerView:(UIPickerView *)pickerView attributedTitleForRow:(NSInteger)row forComponent:(NSInteger)component NS_AVAILABLE_IOS(6_0); // attributed title is favored if both methods are implemented
- (UIView *)pickerView:(UIPickerView *)pickerView viewForRow:(NSInteger)row forComponent:(NSInteger)component reusingView:(UIView *)view;