NSScrollView 和 lion ..是否可以在滚动时仅显示滚动条
是否可以让 NSScrollView 忽略系统首选项设置并仅在滚动时显示滚动条。不幸的是,我的应用程序是为覆盖样式滚动条设计的,所以我想避免调整包含的内容视图。
这可能吗?
Is it possible to have an NSScrollView ignore the system preferences setting and only show scrollers when scrolling. My application is designed for the overlay style scrollers only unfortunately, so I want to avoid having to adjust the containing content views.
Is this possible?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我会看一下
NSScroller
的 setScrollerStyle:。那应该可以完成工作。然而,我想分享的是,我个人认为强迫用户使用一种风格的滚动条而不是另一种风格是糟糕的设计的表现。该系统允许用户进行选择,我相信应用程序应该尊重该选择。事实上,您的内容视图不处理水平或垂直调整大小,这是一个很大的危险信号,我会重新审视该设计选择。
祝你好运。
I would take a look at
NSScroller
's setScrollerStyle:. That should do the job.However, I'd like to share that I personally think forcing users into using one style of scrollers over the other is indicative of bad design. The system allows users to choose and I believe apps should honor that choice. The fact that your content view doesn't handle horizontal nor vertical resizing is a big red flag and I would revisit that design choice.
Good luck.