我的 app有以下代码:
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派到UIText 我的看法有以下错误:
Incompatible objective c types struct NSMutableAttributedString expected struct nsstring
因此,请让我知道,我如何能够在UITextView中展示一下NStableAttributedString。