使用 NSTextStorage 绘制文本
我使用三个类将文本绘制到屏幕上: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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
[self defaultFont]
返回什么值?看起来可能为零。What value does
[self defaultFont]
return? It looks like it might be nil.