How do I change the iOS version for the Simulator?

Ios SimulatorXcode8

Ios Simulator Problem Overview


Environment: Version 8.2 beta (8C30a)

My schema list only devices.
How do I change the iOS version in simulator?

I can see the available iOS Simulators...

enter image description here

...but they're not listed in the schema list.
Nor is their a way to discriminate amongst the iOS versions within schema manager.

enter image description here

Ios Simulator Solutions


Solution 1 - Ios Simulator

The list of available simulators is dictated by three factors:

  1. It will not show you simulators whose iOS version is prior to that of your current app's deployment target. If you want to see some recent, prior iOS simulators, make sure your app's deployment target is set accordingly.

deployment version

  1. If you go to Xcode "Preferences" - "Components", you can confirm which iOS simulators are installed on your machine.

components

  1. In Xcode's "Devices" window (shift+command+2), as shown in the snapshot in your original question, you can configure particular simulator devices for your Xcode environment.

Solution 2 - Ios Simulator

Open your xcode and press command + shift + 2.

Device/simulator dialog

Click on left bottom + button and your new simulator with required iOS version.

Add simulator dialog

Click create, now you are ready to use the new simulator.

Solution 3 - Ios Simulator

After adding the @availability & #availability flags which allowed me to get a successful compiled under and older distribution target, I noticed that the iOSes came back:

enter image description here

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionFrederick C. LeeView Question on Stackoverflow
Solution 1 - Ios SimulatorRobView Answer on Stackoverflow
Solution 2 - Ios SimulatorShahbaz HashmiView Answer on Stackoverflow
Solution 3 - Ios SimulatorFrederick C. LeeView Answer on Stackoverflow