我正在尝试为 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;