Image Assets catalog doesnt recognise retina 4 photos in xCode5

 ̄綄美尐妖づ 提交于 2019-11-29 06:24:41

The "R4" image will only work on 4-inch iPhone running iOS 7 or later. On older version of iOS it will use 2x image.

Example. If you use images like this:

you will see:

  • iPhone 5 iOS >= 7 - number 3,
  • iPhone 5 iOS < 7 - number 2,
  • iPhone 4, 4S - number 2,
  • iPhone 3GS - number 1,
  • iPhone 5C and 5S - number 3.

In my experience, this is the case whenever you do not target specifically iOS 7.0 in your Deployment Target as part of your Project/Workspace settings.

Targeting anything other than 7.0 seems to result in this behavior.

To clarify: this value essentially specifies the minimum version of iOS that is allowed to run your app. Specifying iOS 7.0 in this field will restrict use of your app/update to ONLY users with iOS 7.0.

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