iOS7 App Submission - with only 2x (retina) images?

帅比萌擦擦* 提交于 2019-12-31 01:59:07

问题


I'm currently developing an application for iPhone with iOS7, only. From what I read, for iPhone with iOS7, there is no support for older devices than iPhone4. If that's the case, when it comes to images, all I need is retina images (@2x).

Can I submit to the App Store, an app with only retina images, since the app's minimal requirement is retina devices ?

Thank you.


回答1:


Possible duplicate of Can I dump my non-Retina Images for a iOS7 only app?

Anyway, as long as I know you don't need @2x version of your images as long as you don't support old displays, but remember that your images as to be double width and height, then if you have a 100x100px UIImageView, you need to load a 200x200px image to meet retina resolution.

EDIT: To explain in deep.

Actually, iPad 2 and iPad mini 1st generation run iOS 7 and doesn't have retina display. Anyway using @2x images it is not mandatary. You can just use double size images and set your UIImageViews' contentMode to UIViewContentModeScaleToFill to fit your needs.

PROS -> smaller bundle

CONS -> worst performaces



来源:https://stackoverflow.com/questions/22019856/ios7-app-submission-with-only-2x-retina-images

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