3

xcode 11.4 has removed the standard "hardware" and device options from Simulator. How to open an existing device or create a new device?

Here is the new simulator menu:

enter image description here


In xcode 11.4, Windows > Devices and Simulators, there is no option to launch a simulator.

enter image description here

jerrymouse
  • 16,964
  • 16
  • 76
  • 97
  • 1
    Are you running your app from Xcode? If so, just select the device for the Active Scheme (top-left): https://i.stack.imgur.com/YMhYk.png ... if not, then search for `launch ios simulator from command line` – DonMag May 06 '20 at 15:29
  • 1
    Oh... do you not have this option? https://i.stack.imgur.com/LUMwY.png – DonMag May 06 '20 at 15:31
  • @DonMag Found the option, thanks. My bad I couldn't find it earlier. – jerrymouse May 06 '20 at 15:40
  • Added as an answer, for the benefit of anyone else coming across this question. – DonMag May 06 '20 at 15:48

1 Answers1

8

If you are running your app from Xcode, just select the device for the Active Scheme (top-left):

enter image description here

If not, then search for launch ios simulator from command line

Or, find this option:

enter image description here

DonMag
  • 69,424
  • 5
  • 50
  • 86