在代码中使用 Interface Builder 的系统媒体文件

发布于 2024-11-16 10:21:01 字数 179 浏览 5 评论 0原文

我对 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

独﹏钓一江月 2024-11-23 10:21:01

使用 NSImage 的 imageNamed: 方法获取系统镜像。您可以使用 NSImage 的 Constants 部分 作为名称。要获取您指定的图像,您可以使用:

[NSImage imageNamed: NSImageNameRevealFreestandingTemplate];

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:

[NSImage imageNamed: NSImageNameRevealFreestandingTemplate];
作死小能手 2024-11-23 10:21:01

[imageView setImage:[NSImage imageNamed:@"NSRevealFreestandTemplate"]];

[imageView setImage:[NSImage imageNamed:@"NSRevealFreestandingTemplate"]];

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文