使用 NSTextStorage 绘制文本

发布于 2024-10-13 15:25:41 字数 672 浏览 0 评论 0原文

我使用三个类将文本绘制到屏幕上:NSTextStorage、NSTextContainer、NSLayoutManager。 我希望 nstextstorage 的一部分具有一些特殊属性(下划线、颜色...),但它不起作用。这是代码:

NSTextStorage *textStorage= [[NSTextStorage alloc] initWithString:string];
int fromLength= [[[pub from] name] length];
[textStorage addAttribute:NSUnderlinePatternSolid  value:NSUnderlineStyleAttributeName range:NSMakeRange(0, fromLength)];
[textStorage addAttribute:NSFontAttributeName value:[self defaultFont] range:NSMakeRange(0, [textStorage length])];

问题是它引发了这个异常: NSConcreteNotifyingMutableAttributedString addAttribute:value:range:: nil value

你能帮我吗?

提前致谢。

编辑:我通过更正方法调用解决了异常。但属性并未显示。

I'm drawing text to the screen using the three classes: NSTextStorage, NSTextContainer, NSLayoutManager.
I want one part of the nstextstorage to have some special attributes (underline, color...) but it doesn't work. Here is the code:

NSTextStorage *textStorage= [[NSTextStorage alloc] initWithString:string];
int fromLength= [[[pub from] name] length];
[textStorage addAttribute:NSUnderlinePatternSolid  value:NSUnderlineStyleAttributeName range:NSMakeRange(0, fromLength)];
[textStorage addAttribute:NSFontAttributeName value:[self defaultFont] range:NSMakeRange(0, [textStorage length])];

The problem is that it raises this exception: NSConcreteNotifyingMutableAttributedString addAttribute:value:range:: nil value

Can you help me?

Thanks in advance.

EDIT: I resolved the exception by correcting the method call. The attributes are not displayed though.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

笛声青案梦长安 2024-10-20 15:25:41

[self defaultFont] 返回什么值?看起来可能为零。

What value does [self defaultFont] return? It looks like it might be nil.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文