IB 如何加载 UIImage:imagedNamed 与 imageWithData?

发布于 2024-08-21 02:35:46 字数 98 浏览 4 评论 0原文

在阅读了 UIImage 的内存管理之后,我担心界面构建器如何加载 UIImage。它使用 UIImage:imagedNamed 还是 UIImage:imageWithData?

After reading the memory management for UIImage, I'm worried about how interface builder loads an UIImage. Does it use UIImage:imagedNamed or UIImage:imageWithData?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

橙味迷妹 2024-08-28 02:35:46

请参阅相关的 《资源编程指南》中的部分:

当您加载包含以下内容的 nib 文件时
对图像和声音的引用
资源,nib 加载代码缓存
尽可能提供资源以方便
稍后检索。例如,之后
加载nib文件,可以检索
与该 nib 文件关联的图像
使用 imageNamed: 方法
NSImage 或 UIImage(取决于您的
平台)。

所以看起来它使用了 imageNamed: 或一些底层内部例程。
编辑:您可能还对这篇文章感兴趣< /a> 关于+imageNamed

See relevant section in "Resource Programming Guide":

When you load a nib file that contains
references to image and sound
resources, the nib-loading code caches
resources whenever possible for easy
retrieval later. For example, after
loading a nib file, you can retrieve
an image associated with that nib file
using the imageNamed: method of either
NSImage or UIImage (depending on your
platform).

So it looks like it uses imageNamed: or some underlying internal routines.
Edit: You may also be interested in this post about +imageNamed

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