Xcode project not showing simulator list

I open my project in Xcode 6.1. When I try to start a project, the button is inactive. When I try to go to Product > Clean , the option is inactive. When I look at the list of simulators, all I get is My Mac instead of the usual iOS Device . How to make my simulators come back?

+84
ios xcode
Nov 01 '14 at 15:24
source share
33 answers
  • one
  • 2

Click on the name of the project (on the right to the "Run" button). Three options will appear.

  • Change Scheme
  • New scheme
  • Schema Management

You can click "New Schema" and then click "OK" in the pop-up window.

You will have a list of simulators.

+58
Nov 01 '14 at 15:28
source share

Make sure that the project you are trying to run has a deployment target equal to or less than the version of your Xcode SDK. In my case, I tried to launch a project that was created using iOS8.4 , but I have Xcode6.1 with SDK version 8.1

I changed the deployment target to 8.1 and started showing simulators.

PS, before doing this, make sure that your code and external libraries are compatible with your new deployment target, otherwise you need to update Xcode.

+132
Sep 11 '15 at 7:00
source share

Try it, it works like a charm! for me,

Follow below step

1) Pure derived data, as shown below,

  rm -rf ~/Library/Developer/Xcode/DerivedData/ OR Xcode---> Preferences--->Location--->Derived Data 

Derived data

2) In the Deployment Information section, change the deployment target.

This is equal to or less than the Xcode SDK version

enter image description here

3) Exit Xcode

enter image description here

4) Open Xcode again , you will see a list of simulators.

enter image description here

Hope this helps for someone.

+84
Nov 28 '16 at 7:03
source share

I could not find a solution that would fix my problem. All simulators were there for all projects, except for those that I needed.

Decision:

Build Settings β†’ Architectures β†’ Supported Platforms:

changed from iphoneos to iOS

+60
Feb 08 '17 at 0:58
source share

Also check the iOS Deployment Target settings in the build settings. I used Xcode 6.3, while the deployment target was set in iOS 8.4. I got a list of simulators as soon as I installed it in iOS 8.3 enter image description here

+55
Jul 14 '15 at 11:39
source share

The cmd below solved my problem:

 $ sudo xcode-select --switch /Applications/Xcode.app/Contents/Developer 



In my case, I upgraded to Xcode 8 and later downloaded another version 7.3.1 (renamed it "Xcode 7.3.1"), and then could not get the list of simulators in Xcode 8.

+27
Oct 08 '16 at 5:27
source share

In my case, I accidentally deleted ios devices in the system Finder -> Library-> Devices-> Core simulator

So, the simulators are not listed in the Xcode project, except for the ios device.

I solved this by adding ios simulators from Xcode-> Window-> Devices-> Add simulators

enter image description here

Hope this helps someone.

+17
May 23 '16 at 7:51 am
source share

If you renamed Xcode.app since the first launch, iOS Simulator becomes unavailable. This is mentioned in Xcode 6.1 Release Notes :

Renaming Xcode.app after starting any of the Xcode tools in this bundle may cause iOS Simulator to no longer be available. Rename Xcode.app will return to what it was when you first started or rebooted your Mac. (16646772)

+8
Nov 03 '14 at 19:49
source share

Go to "Window" then "Devices" and click the plus button in the lower left corner to add a device and select the desired simulator. It helped me.

+7
Jul 31 '15 at 8:37
source share

Solution: Build Settings β†’ Architectures β†’ Supported Platforms: changed from iphoneos to iOS

Confirmed work in Xcode version 9.0 (9A235)

+7
Oct 25 '17 at 6:10
source share

Sometimes the simulator that you have may not be the simulator that is specified in the build settings . Make sure the sim package is downloaded for your iOS deployment goal

+6
Jul 18 '18 at 1:20
source share

If your problem is related to several (versions) of xcode

Then follow these steps

1. Clearing derived data Go to Xcode settings β†’ Select tab β†’ select the small gray arrow on / Users / apple / Library / Developer / Xcode / DerivedData. You will be redirected to the folder. Select the Derivative Data and Delete folders.
enter image description here

2. Completely complete Xcode and reopen

This will solve your problem. Good coding :)

+5
Jun 08 '17 at 5:04 on
source share

check the project build settings, make sure you select the latest version of iOS (iOS 8.1).

+4
Nov 01 '14 at 15:28
source share

I still had my iOS Device , but all my simulators disappeared.

I tried every suggested solution that I could find on stackoverflow.

In the end, I uninstalled the Xcode application and downloaded it again from the App Store. After installation, the simulators returned.

+4
Jun 14 '15 at 15:26
source share

Xcode seems to hide this menu when the window is a certain size. You must make your window large enough before it comes back.

+4
Oct 10 '15 at 9:41
source share

The same thing happened to me. When I upgraded from Xcode 8 Beta 3 to Xcode 8 Beta 4, but I solved it this way.

  • Go to Window β†’ Devices

you can see all devices and simulators here

  1. Just right click on any device or simulator
  2. Check Show in destination menu (Even it is already checked, then double click it, it can be updated)

If the above does not work .. as if you are not seeing any simulators, then ..

  • Change (degrade) the minimum application deployment target to 8.3 (optional)
  • restart xcode

It worked for me .. I hope this helps someone.

+4
Aug 05 '16 at 19:17
source share

A small but effective solution. In my case, I upgraded to xcode to version 9.2, and the simulators disappeared.

I found this solution, and it worked for me as well as for others.

**

Just close your xcode and restart again. You will have simulators.

**

+3
Dec 25 '17 at 7:38
source share

For those who come from Unity, even if you manage to get them to appear (changing Build Settings > Supported Platforms on iOS it will not start in the simulator.

Instead, you need to select this Simulator SDK:

enter image description here

And make sure that there is something other than Metal.

enter image description here

Then the list of simulator devices will be there from the very beginning.

+3
Apr 20 '19 at 10:00
source share

I came across a different situation when this can happen. I work with a team in which we use an Xcode server for continuous integration. The server did not see any simulators, but only for one project. In the end, I decided that this was due to the fact that the version of Xcode on our server was one version earlier, and the Xcode project was set up to create a new available version. Just updating Xcode solved the problem for us.

+2
09 Feb '16 at 13:57
source share

It happened to me after updating the new Xcode. Launch

 xcode-select --install 

fixed it for me.

+2
Sep 19 '16 at 10:12
source share

Just go to Xcode -> Window -> Devices

Click + in the lower left

Add your new simulator

+2
Nov 02 '16 at 16:08
source share

Enough Xcode and open it again, it will show. It worked for me.

+2
Nov 28 '16 at 7:06
source share

If you have just updated Xcode, you may need to restart your computer before the simulators become available again.

+2
Jul 23 '19 at 8:10
source share

After upgrading to Xcode 10.3, the list of simulators was empty. I rebooted and this was resolved.

This does not necessarily answer a specific OP question, but this was the first place I focused on researching the problem with the Xcode 10.3 update.

+2
Jul 23 '19 at 21:12
source share

I had the same problem that arose from an imported project, the project had 10.3 as the deployment target, and I only had 10.0, changing the deployment target to 10.0 solved my problems.

+1
May 22 '17 at 5:56 a.m.
source share

For those struggling with this, I have tried the above options without success. Turns out all I had to do was just exit and restart Xcode. Simple things can be annoying sometimes.

+1
Jul 25 '17 at 11:40
source share

In my case, I created the target static library for tvOS in Xcode 8.3.3, and the tvOS simulator did not appear in the list. In the end, it turned out that TARGETED_DEVICE_FAMILY in the build settings was set to 1,2 instead of 3 . If you leave this here, then someone else will run into the same problem.

+1
Sep 13 '17 at 12:17
source share

I just needed a good old reboot computer. When uninstalling and reinstalling Xcode did not do this job, I restarted out of sheer frustration .... and lo! After the reboot, everything was in order.

+1
Jan 15 '19 at 15:16
source share

I just renamed my Xcode file in the application folder to something else and renamed it back to Xcode.

Worked

+1
Jul 24 '19 at 6:01
source share

Check if the application store in xcode has a GET instead of the installed one, delete the current version and get a new one.

0
Jul 20 '16 at 1:44
source share
  • one
  • 2



All Articles