Mac 自定义 NSSlider 如何覆盖滑块框架外部的刻度线绘制
我正在创建一个自定义 NSSlider,我想在每个刻度线下方绘制标签。 我目前正在自定义 NSSliderCell
-(NSRect)rectOfTickMarkAtIndex
中执行此操作,但是因为 NSSlider
的高度是固定的,所以我的标签下面的图画正在被裁剪。
有人有什么想法吗? 此外,任何具有自定义 NSSlider 的完整实现的资源都将受到赞赏。
I'm creating a custom NSSlider where I want to draw labels underneath each of the tick marks.
I'm currently doing this in the custom NSSliderCell
-(NSRect)rectOfTickMarkAtIndex
however because the height of NSSlider
is fixed, the label I'm drawing underneath is being cropped.
Anyone have any ideas?
Also any resources with full implementations of custom NSSliders would be appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
只需设置
NSSlider
(它实际上是NSView
的子类)的框架和边界,使其更高。那么你的绘图应该可以正常工作。将此代码粘贴到awakeFromNib
中:(如果您位于其子类中,请将slider
替换为self
。)Simply set the frame and bounds of the
NSSlider
(which is really a subclass ofNSView
) so it is higher. Then your drawing should work fine. Stick this code inawakeFromNib
: (Replaceslider
withself
if you're in its subclass.)