How can i change ios sdk?

I want to change my SDK for iOS. I have ios 5 and xcode 4.2, but I have to reduce it to iOS 4.2 SDK due to my application. In developer.apple.com xcode 4.1 is with iOS 5, so it is not available. How can I find xcode 4.1 with ios sdk 4.2 or how to configure ios sdk 4.2 without downloading xcode. If this is not possible, you can give me linq to download xcode 4.1 using ios sdk 4.2

+4
source share
2 answers

The base SDK should be currently available - this is the version of the SDK that you installed for compilation.

However, further in the list of settings you will see that you can set the “Deployment Goal” for lower versions of iOS. This is the one that defines the lower version of the OS on which the application will run.

+2
source

The latest SDK included all the necessary functions from previous versions of the SDK. You do not have to worry about this. If you want to support previous versions of iOS, just install the iOS Deployment Target in iOS 4.2 (or another option) in the project settings on the Build Settings tab.

+1
source

Source: https://habr.com/ru/post/1384071/


All Articles