After updating to Xcode 8.2 the compiler throws one error for my App target:
“Use Legacy Swift Language Version” (SWIFT_VERSION) is required to be con
Close Xcode and open the corresponding project.pbxproj in a text editor of your choice.
project.pbxproj
Replace SWIFT_VERSION = 3.0.1; with SWIFT_VERSION = 3.0; for all targets.
SWIFT_VERSION = 3.0.1;
SWIFT_VERSION = 3.0;
Reopen Xcode.