Ever since I\'ve updated to Xcode 8.2 (GM seed, from the App Store), I have been stuck at the following error:
Use Legacy Swift Language Version” (SWIFT_V
Xcode 8 seems to be wrongfully displaying a nonexistent ("phantom", if you will) No
. There's a trivial fix for this:
SWIFT_VERSION
to toggle the drop-down list.Debug
and Release
to Yes
.Debug
and Release
back to No
.The image below was taken just after setting Debug
to No
. Xcode shows that both Debug
and Release
are set to No
, however SWIFT_VERSION
reads
:
From this, I can only conclude that it is a bug; and that some value (or more probably a null value) is being misrepresented as No
.