视网膜显示屏 iphone 的图像

发布于 2024-11-09 23:49:56 字数 479 浏览 0 评论 0原文

我有一个可以工作的应用程序,我已经在我的 iPod touch 上测试过了。一切都运行得很好。

我的标签栏图标和启动屏幕图像位于资源文件夹中的单独文件夹中

Resources->images

现在,我知道对于 iPhone4,我需要使用 2x 图像。

我的问题是为了支持 iPhone4,我需要做的就是在我的图像文件夹中添加 2x 图像。例如,如果我的启动画面图像是 Default.png,我应该将 2x 图像添加为 [电子邮件受保护] 在我的图像文件夹中,iPhone 将自动使用它。

所有标签栏图像都相同吗?

提前致谢

I have an working application which i have tested in my ipod touch. Everything works pretty fine.

My tabbar icons and splash screen images are in a separate folder in my Resources folder

Resources->images

Now, I know for iPhone4 i need to use 2x images.

My question is for support for iPhone4 all that i need to do is add 2x images in my images folder. For example if my splashscreen image is Default.png, I should add my 2x image as [email protected] in my images folder and iphone will use it automatically.?

Is it the same for all tabbar images ?

Thanks in advance

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

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

发布评论

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

评论(2

-黛色若梦 2024-11-16 23:49:56

是的,你说的都是对的。请记住还要将 @2x 图像导入到您的 Xcode 项目中(例如,通过将它们从 Finder 拖动到 Xcode),以便在您构建应用程序时将它们添加到捆绑包中。

Yes, all that you said is correct. Remember to also import the @2x images into your Xcode project (e.g. by dragging them from Finder to Xcode), so they'll be added to the bundle when you build your app.

狼性发作 2024-11-16 23:49:56

对于我开发的应用程序,我只有一张这种格式的图像:

[email protected]

当我引用这张图像时,我进行以下调用,它总是有效,无论是在 3GS/iPhone 4 还是 iPad 上。

[UIImage imageNamed:@"myImage.png"]

For the apps I have worked on, I have only one image in this format:

[email protected]

When I reference this image, I make the following call and it always works, whether on a 3GS/iPhone 4 or iPad.

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