iOS 6 UITextView で初期テキストのフォントの色を設定しようとしています。UI 6 シミュレーターで実行すると、ビューが表示されますが、属性はレンダリングされません。何か不足していますか?
NSAttributedString *as = [[NSAttributedString alloc] initWithString:boilerText
attributes:[NSDictionary dictionaryWithObjectsAndKeys:
NSForegroundColorAttributeName, [UIColor redColor] ,
NSUnderlineStyleAttributeName,
[NSNumber numberWithInt: NSUnderlineStyleSingle],nil]
];
_descriptionView.attributedText = as;