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

前端 未结 1 670
不知归路
不知归路 2021-01-20 10:23

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 t

相关标签:
1条回答
  • 2021-01-20 10:52

    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

    0 讨论(0)
提交回复
热议问题