iPhone dev:如何加载来自不同组的相同名称的图像

发布于 2024-09-02 14:14:59 字数 209 浏览 4 评论 0原文

我正在开发一个 iPhone 项目,并在不同的目录下定义了两个主题,大多数文件共享相同的名称(如 background.png、image1.png、image2.png 等)。我已将它们以不同的组名称(group1、group2)导入到 xcode 中。

如何告诉 UIImage 从给定组加载图像,例如我想要 group1:background.png?

谢谢, 蒂姆

I am working on an iPhone project, and have two themes defined under different directories, with most files share the same names (like background.png, image1.png, image2.png, etc). I have had them imported into xcode under different group names (group1, group2).

How do I tell UIImage to load an image from a given group, say, I want group1:background.png?

Thanks,
Tim

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

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

发布评论

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

评论(1

柠檬色的秋千 2024-09-09 14:14:59

试试这个:

NSString *path = [[NSBundle mainBundle] pathForResource:@"image1" ofType:@"png" inDirectory:@"group1"];
[UIImage imageWithContentsOfFile: path];

Try this:

NSString *path = [[NSBundle mainBundle] pathForResource:@"image1" ofType:@"png" inDirectory:@"group1"];
[UIImage imageWithContentsOfFile: path];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文