简体   繁体   中英

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

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.

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

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM