What version of iOS I have with Xcode

57 Views Asked by At

How I can tell the iOS SDK version used by my Xcode? and iOS SDK version installed on my Mac?

1

There are 1 best solutions below

4
Glorfindel On BEST ANSWER

The SDK version by Xcode can be seen in the Build Settings of your project:

enter image description here

To find out which iOS SDKs are installed, open the terminal and type

ls -lah /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs

(according to Apple, this is the location where they're installed)