NSTextView 中的 NSRectFill 被文本覆盖

发布于 2024-10-04 08:56:20 字数 123 浏览 2 评论 0原文

当使用 NSRectFill 或 NSBezierPath.fillRect 在 NSTextView 中的某些文本上绘制块时,文本似乎覆盖了我的矩形。即,只有一小部分矩形从我应该覆盖的文本后面露出来。如何确保在绘制文本后绘制矩形?

When using either NSRectFill or NSBezierPath.fillRect to draw a block over some text in an NSTextView, the text seems to go over my rectangle. I.e. there is just a sliver of the rectangle peeking out from behind the text I'm supposed to be overwriting. How can I ensure that I'm drawing the rectangle after the text is drawn?

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

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

发布评论

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

评论(1

满栀 2024-10-11 08:56:20

如果你继承了 NSTextView 的子类。首先用 super 画出文字,然后画出自己的东西。

- (void)drawRect:(NSRect)dirtyRect {
    [super drawRect:dirtyRect];

    NSRectFill(yourOwnRect);
}

If you subclassed NSTextView. First, draw the text with the super and then draw your own stuff .

- (void)drawRect:(NSRect)dirtyRect {
    [super drawRect:dirtyRect];

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