视网膜显示屏 iphone 的图像
我有一个可以工作的应用程序,我已经在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
是的,你说的都是对的。请记住还要将
@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.对于我开发的应用程序,我只有一张这种格式的图像:
当我引用这张图像时,我进行以下调用,它总是有效,无论是在 3GS/iPhone 4 还是 iPad 上。
For the apps I have worked on, I have only one image in this format:
When I reference this image, I make the following call and it always works, whether on a 3GS/iPhone 4 or iPad.