在代码中使用 Interface Builder 的系统媒体文件
我对 IB 库的“媒体”选项卡中的多个图像和声音文件有疑问:如何在代码中使用它们? 我想将 NSImageVew
的图像更改为 NSRevealFreestandTemplate
,但如何访问它?我很确定一定有比创建隐藏图像视图并从那里拉出它更好的方法。有什么想法吗?
谢谢你!
I have a question regarding the several images and sound files in the Media tab of IB's library: how can they be used in code?
I want change the image of a NSImageVew
to NSRevealFreestandingTemplate
, but how can I access it? I'm pretty sure there must be a better way than creating a hidden image view and pulling it from there. Any ideas?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用 NSImage 的
imageNamed:
方法获取系统镜像。您可以使用 NSImage 的 Constants 部分 作为名称。要获取您指定的图像,您可以使用:Use NSImage's
imageNamed:
method to get system images. You can use any of the values found in NSImage's Constants section as the name. To get the image you specified, you would use:[imageView setImage:[NSImage imageNamed:@"NSRevealFreestandTemplate"]];
[imageView setImage:[NSImage imageNamed:@"NSRevealFreestandingTemplate"]];