0

I have made a project in Xcode and copied the project to another system. When I opened the project on the other system, there was no option to select a Simulator device (only real Device). How can i resolve this issue?

Ravi Ojha
  • 1,480
  • 17
  • 27

2 Answers2

5

Changing deployment target from 4.3 to 6 solved this issue, but if you still have problem go to project -> Build setting and see this if you have selected iOS because on OS X it will not show simulatorsenter image description here

iYoung
  • 3,596
  • 3
  • 32
  • 59
Noor
  • 2,071
  • 19
  • 28
0

Here is your solution (if you haven't found already :)

Under Your project Build Settings

  1. select Deployment section.
  2. change iOS Deployment Target to a version iOS 5.0 or less.
  3. now you can go ahead and change the deployment target from device to simulator!

In my case the deployment target was set to version 5.1 and I still am running snow leopard OS with appropriate JARS copied from xCode 4.3 to make it run with a device running iOS 5.1. However, my simulators do not yet support version 5.1 so till I changed the deployment target to lower version e.g. 5.0 or 4.2 it won't let me run on simulator.

Dharmesh Kheni
  • 71,228
  • 33
  • 160
  • 165
Ravi Ojha
  • 1,480
  • 17
  • 27