アプリに以下のコードがあります
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を表示するにはどうすればよいですか。