TIL about Xcode Releases and how now old Xcode releases could be launched
TIL about Xcode Releases with download links to all versions of Xcode.
TIL downloaded old version of Xcode couldn’t be just run as earlier. :
- Download the desired xcode version app from https://xcodereleases.com
- Unzip the app and rename it to
Xcode-<version>.app
; - Move it to
/Applications
directory; - Run xcode-select command:
xcode-select -s /Applications/Xcode-<version>.app
; - Confirm that the correct Xcode version is selected with
xcode-select -p
.