Weizhi
Weizhi

Reputation: 172

Can't select any simulator on Xcode6.4

I have installed Xcode6.4, but I can't select any simulators to run.I've tried to select one devices from Product -> Destination. But still didn't work.

enter image description here

and there are duplicated devices.

enter image description here

Upvotes: 0

Views: 89

Answers (2)

0yeoj
0yeoj

Reputation: 4550

Try setting the deployment target of your project:

Project > Info > Deployment Target

enter image description here

Set the iOS Deployment Target

The reason why there are duplicates: devices support different iOS versions..
You can check the device information of each to clarify..

If you want to remove the duplicates: Menu > Window > Devices and remove duplicates.

Refer here for that..

Upvotes: 3

Avijit Nagare
Avijit Nagare

Reputation: 8802

Your Deployment Target might not selected try this.

Select Project -> Target -> Deployment Info -> Deployment Target 7.0 or 8.0

Upvotes: 1

Related Questions