我的应用程序中有以下代码
NSMutableAttributedString * string = [[NSMutableAttributedString alloc] initWithString:self.myDisplayTxt];
[string addAttribute:(NSString*)kCTForegroundColorAttributeName
value:(id)[[UIColor redColor] CGColor]
range:NSMakeRange(0,5)];
self.myTextView.text = string;
将 NSMutableAttributedString 分配给 UITextView 时,出现以下错误:
不兼容的目标 c 类型 struct NSMutableAttributedString 预期的 struct nsstring
所以请告诉我,如何在 UITextView 中显示 NSMutableAttributedString。