1
votes

There is no option on the left corner of Xcode to select to run on iOS6 or iOS7 simulator. While there should be. The storyboard builds for iOS6.1 and later. How could I run my app on iOS6 simulator?

4
Is this a project you created with Xcode 5?ThomasW
Yes. I create it by xocde5icemelon
Then vikingosegundo answer is probably what you need to do. By default xcode creates projects with the deployment target set to the latest OS. You'll need to change the value to deploy to earlier OSes.ThomasW

4 Answers

3
votes

There is an option on the top left corner to select which simulator you want:

enter image description here

You also have to select the right Architecture to be able to change the Deployment Targeet:

enter image description here

To further prove that you have to remove the 64 bits:

enter image description here

Hope this helps!

3
votes

You might need to install additional iOS simulator. To install additional tools and software go to:

xcode preference -> downloads.

0
votes

@LuisCien's answer is correct, though your VALID_ARCHS may need to be edited as well. The key point there being that ARCHS and VALID_ARCHS cannot contain arm64. As @LuisCien and others have pointed out, the IPHONEOS_DEPLOYMENT_TARGET must be 6.1 or earlier.

0
votes

you must change your deployment target to 6.1. if you cannot select that you might need to install additional packets from the settings of xcode.

enter image description here

enter image description here

enter image description here