Optimized for iPhone 6 info text in App Store

假如想象 提交于 2019-11-30 03:43:10

The solution was to add @3x versions for all used images and using the new size classes. You notice the app from switching to iPhone 6 supported when e.g. table cells look different (get very small) to adjust to the new screen size.

Update for clarity:

Before iPhone 6 and 6 Plus, my images were named like this:

Icon-40.png
Icon-40@2x.png

In order to get the wanted optimized for iPhone 6 and iPhone 6 Plus text, you need to add a third resolution of each image and name them with a @3x where the @2x was before. So you end up having these three images -per image you want to show in the app-.

Icon-40.png
Icon-40@2x.png
Icon-40@3x.png

IMPORTANT

You use a launch XIB or storyboard file to indicate that your app runs on iPhone 6 Plus or iPhone 6.

From Apple iOS Human Interface Guidelines

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!