-1

I want to test my app on iPhone X. I don't want to run my current app on Xcode9 due to some designing issues. So Is there any way to test app on iPhone X simulator?. Please clarify me.

Thanks in advance.

Sri..
  • 163
  • 5
  • 18

2 Answers2

0

You can not, Xcode 9 is required to run your code on iPhone X Simulator. You can download Xcode 9.0 or Xcode 9.1 here.

Kunal Gupta
  • 2,984
  • 31
  • 34
0

You can download the latest Xcode beta version, because beta versions are easily installed in parallel to your released Xcode version. Then run a copy of your project on the iPhone X simulator on Xcode 9 beta, and change the original to fix any problems that you find.

gnasher729
  • 51,477
  • 5
  • 75
  • 98
  • Why do you need Xcode beta? You can easily install Xcode 8 and the non-beta Xcode 9.1 in parallel. Besides that, building and running a copy of the project with Xcode 9 and an updated Base SDK of iOS 11.x is not at all a fair test to know if the same project built and released with Xcode 8 and a Base SDK of iOS 10.x will work the same or not on an iPhone X. – rmaddy Nov 02 '17 at 18:32