Can we install iOS 6 simulator in XCODE 6.0.1?

I updated my XCODE version to 6.0.1 from 5.1.1 but when i try to install iOS simulator 6 , i cant find it in XCODE -> Preferences -> Downloads option ...

My project needs iOS 6 environment

Can anyone please suggest a way to install it or get back to older version.

Thanks in Advance .

Upvotes: 0

Views: 4226

Answers (2)

Jeremy Huddleston Sequoia
Jeremy Huddleston Sequoia

Reputation: 23651

Xcode 6 contains CoreSimulator. CoreSimulator supports the iOS 7.0 and later simulator runtimes.

The iOS 7.0 simulator runtime is not supported on OS X Yosemite.

If you are on OS X Mavericks, you can install 7.0 or later.

If you are on OS X Yosemite, you can install 7.1 or later.

If you need the iOS 6 simulator runtime, you should install Xcode 5.1 (on Mavericks) and use it for testing your projects in the iOS 6 runtime. You can install both versions of Xcode simultaneously.

Upvotes: 4

Aaron
Aaron

Reputation: 7145

No, you can't install that simulator in Xcode 6.0.1. You can download Xcode 5.1.1 from the iOS Developer Center: https://developer.apple.com/downloads/index.action?name=Xcode

If that link doesn't work login to the dev center and under the downloads section click "Looking for an older version of Xcode?"

enter image description here

In the search box type "Xcode 5.1.1" and filter your Categories to Developer Tools:

enter image description here

Upvotes: 2

Related Questions