osx – NSAttributedString高亮背景颜色之间显示行(丑陋)

osx – NSAttributedString高亮背景颜色之间显示行(丑陋),第1张

概述我试图很好地显示NSTextView中突出显示的段落.现在,我通过创建一个带有背景颜色的NSAttributedString来做到这一点.这里有一些简化的代码: NSDictionary *attributes = @{NSBackgroundColorAttributeName:NSColor.greenColor};NSAttributedString *attrString = [[NSA 我试图很好地显示NSTextVIEw中突出显示的段落.现在,我通过创建一个带有背景颜色的NSAttributedString来做到这一点.这里有一些简化的代码:
NSDictionary *attributes = @{NSBackgroundcolorAttributename:NScolor.greencolor};NSAttributedString *attrString = [[NSAttributedString alloc] initWithString:@"Here is a single line of text with single spacing" attributes:attributes];[textVIEw.textStorage setAttributedString:attrString];

这种方法基本上起作用,因为它产生突出显示的文本.

不幸的是,当多行存在时,除了线条本身之外,突出显示线之间的垂直空间,导致了丑陋.

有人知道在Cocoa这样的突出表现方式吗?下面的图片基本上是我正在寻找的(忽略白盒子上的阴影):

我会愿意使用CoreText,HTML或任何必要的东西,使事情看起来更好.

解决方法 您将需要对NSLayoutManager进行子类化并覆盖:
- (voID)fillBackgroundRectArray:(const CGRect *)rectArray                      count:(NSUInteger)rectCount          forCharacterRange:(NSRange)charRange                      color:(UIcolor *)color;

这是绘制背景颜色矩形的原始方法.

总结

以上是内存溢出为你收集整理的osx – NSAttributedString高亮/背景颜色之间显示行(丑陋)全部内容,希望文章能够帮你解决osx – NSAttributedString高亮/背景颜色之间显示行(丑陋)所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1131362.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存