The actual question is: do I need to create non-retina images if my app should only work on iPhone5/s and iOS >= 7.0?
Asked
Active
Viewed 106 times
-1
-
http://meta.stackexchange.com/questions/182266/how-much-research-effort-is-expected-of-stack-overflow-users/182380#182380 – Ramdhas Apr 05 '14 at 06:42
2 Answers
2
- No need of non retina images.
- Non retina images may be used only for the non retina devices like iphone 3gs .

iOSDeveloper
- 461
- 4
- 20

Ramdhas
- 1,765
- 1
- 18
- 26
-
Just found this one: http://www.iosres.com/ , do I need to write "-568@2x" or use simple name without any prefixes/postfixes? – AndrewShmig Apr 05 '14 at 06:10
-
1-568 for only xcode default images. Just use "name@2x.png" format. its enough, don't confuse yourself. – Ramdhas Apr 05 '14 at 06:13
-
2
If you are only targeting iOS 7 iPhones, you will be fine using only retina images. Your app will be able to run on an iPad though and if it does not properly, your app will get rejected. Make sure to include an app icon for iPads, which is 76x76 points, so 152x152 pixels.

Inertiatic
- 1,270
- 1
- 9
- 12
-
why should my app be tested on iPad if I am writing an iPhone app? – AndrewShmig Apr 05 '14 at 06:15
-
2Apple allows users to download iPhone only apps on an iPad, but you shouldn't have to alter any code to support an iPad (usually). An iOS 7 iPad uses the retina iPhone graphics. – Inertiatic Apr 05 '14 at 06:19