RealityOD
RealityOD

Reputation: 69

Xcode 5 minimum deployment target

Currently I am using Xcode 4.6. My app needs to support minimum iOS 4.3. I also want to expand upper limit support to iOS 7. Does Xcode 5, iOS SDK 7 still support iOS 4.3 ? And is iOS 4.3 simulator still available in Xcode 5 ?

I tried to read up Xcode 5 Release Note but it does not mention anything. Thanks!

Upvotes: 4

Views: 4918

Answers (1)

chandan
chandan

Reputation: 2453

If you want ios 4.3 simulator in your xcode 5 then follow this process

1> Go your application folder and right click on older xcode

2.> Show package content > contents > Developer > Platforms > iPhoneSimulator.platform >Developer > SDKs

3> Now copy this "iPhoneSimulator4.3.sdk" and follow this same directory structure for new xcode version and past this "iPhoneSimulator4.3.sdk" into "SDKs" folder along with "iPhoneSimulator7.0.sdk".

4> restart xcode and then open your project . It will start showing 4.3 along with 7.

Upvotes: 7

Related Questions