我是可可的新手..
我正在创建一个色彩缤纷的窗口。所以我需要将背景颜色设置为IKImageBrowserView
。我认为继承IKImageBrowserView
是设置背景颜色的方法,但对我来说太难了。
没有子类化的任何其他设置背景颜色的方法吗?
答案 0 :(得分:6)
您可以使用带有选项键setValue:forKey
的{{1}}来实现您想要的效果:
IKImageBrowserBackgroundColorKey
注意: imageBrowserViewOutlet 是[imageBrowserViewOutlet setValue:[NSColor redColor] forKey:IKImageBrowserBackgroundColorKey];
个插座。
答案 1 :(得分:0)
您可以使用以下方式执行此操作:
[thumbnailBrowser setValue:[NSColor colorWithDeviceRed:0.125f green:0.145f blue:0.145f alpha:1.0f] forKey:IKImageBrowserBackgroundColorKey];
根据需要更改RGB。 thumbnailBrowser是IKImageBrowserView。好运!