0

我使用 CoreText 创建了以下文本,该文本填充了一个矩形并包围了一个我将在其中插入图像的区域。

attrString = [[NSMutableAttributedString alloc] initWithString:string];
CFAttributedStringSetAttribute((__bridge CFMutableAttributedStringRef) attrString, CFRangeMake(0, attrString.length), kCTFontAttributeName, font);
CFAttributedStringSetAttribute((__bridge CFMutableAttributedStringRef) attrString, CFRangeMake(0, attrString.length), kCTForegroundColorAttributeName, ForegroundTextColor);
CFAttributedStringSetAttribute((__bridge CFMutableAttributedStringRef) attrString, CFRangeMake(0, attrString.length), kCTParagraphStyleAttributeName, paragraphStyle);

/* Get a framesetter to draw the actual text */
CTFramesetterRef fs = CTFramesetterCreateWithAttributedString((__bridge CFAttributedStringRef) attrString);
CTFrameRef frame = CTFramesetterCreateFrame(fs, CFRangeMake(0, attrString.length), pathToRenderIn, NULL);

/* Draw the text */
CTFrameDraw(frame, ctx);

/* Draw the text */
CTFrameDraw(frame, ctx);

在后面的方法中,我使用附加的语句来更改文本子集的颜色:

[attrString addAttribute:NSForegroundColorAttributeName value:[UIColor blackColor] range:NSMakeRange(startRangeValue, endRangeValue)];

不幸的是,颜色没有改变。在此先感谢您的帮助。

4

1 回答 1

1

我将我的评论添加为答案,因为关注它解决了问题:

将属性添加到字符串后,您必须重绘。基本上你在屏幕上看到的不是一个可更改的 NSString 对象,它是它读取的对象的图形绘图。如果更改对象,则必须告诉它再次绘制对象。

所以这个问题的答案是每次你试图改变你正在显示的字符串的任何内容时,你都需要调用绘图代码。

于 2013-06-14T22:31:55.947 回答