NSOutline/NSTableView 源码列表 Lion 风格图标
从 Mac OS X HIG:
与可在工具栏控件内使用的图标一样,系统对侧边栏图标应用各种效果。为了帮助您了解这些效果如何改变侧边栏图标的外观,请考虑 Finder Home 图标,此处显示的是未处理状态[...]
因此,我试图让我的 NSOutlineView 渲染一个黑色侧边栏图标典型的新狮子风格。我正在使用基于视图的 NSOutlineView。但是,我无法在文档中找到任何内容,如果我简单地将 imageView.image 属性设置为侧边栏图像,它会呈现为黑色。所以我认为必须有某种选择加入机制来让侧边栏正确呈现。关于如何实现这一目标有什么建议吗?
From the Mac OS X HIG:
As with the icons that can be used inside toolbar controls, the system applies various effects to sidebar icons. To help you understand how these effects can change the appearance of a sidebar icon, consider the Finder Home icon, shown here in its unprocessed state[...]
So I'm trying to get my NSOutlineView to render a black sidebar icon with the typical new Lion style. I'm using a view-based NSOutlineView. However, I'm unable to find anything in the docs and if I simple set the imageView.image property to the sidebar image, it renders in black. So I figure there must be some sort of opt-in mechanism to get the sidebar to render it properly. Any suggestions on how to achieve that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
除了使用
NSImage
的setTemplate:
方法之外,您还可以重命名图像。这是来自imageNamed:
的文档...Apart from using the
setTemplate:
method ofNSImage
, you can just rename your images. This is from the documentation ofimageNamed:
…