NSTextView 中的 NSRectFill 被文本覆盖
当使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果你继承了 NSTextView 的子类。首先用 super 画出文字,然后画出自己的东西。
If you subclassed NSTextView. First, draw the text with the super and then draw your own stuff .