Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

iPhone simulator screenshot is not in proper dimension

What I want to do is to upload screenshot of app on iTunes connect, so I take the screenshot from the simulator for all iPhone devices.

When I tried to upload these screenshots on iTunes connect, I got the error The dimensions of one or more screenshots are wrong.

so I verify the dimension of each screenshot which are as follows

  • iPhone 4 -> 320 x 480
  • iPhone 5 -> 320 x 568
  • iPhone 6 -> 375 x 667
  • iPhone 6+ -> 621 x 1104

This dimensions should be

  • iPhone 4 -> 640 x 960
  • iPhone 5 -> 640 x 1136
  • iPhone 6 -> 750 x 1334
  • iPhone 6+ -> 1242 x 2208

so the question is why the simulator screenshot coming in @1x not @2x.

I am using Xcode 7.1.

Thanks in advance for any help.

like image 401
Indrajeet Avatar asked Nov 26 '15 07:11

Indrajeet


1 Answers

If you want to scale simulator down, say 50%, and still get screenshots in proper dimensions, disable "optimize rendering for window scale" in debug menu of simulator. enter image description here

like image 89
arundevma Avatar answered Oct 15 '22 07:10

arundevma