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
I've had the same problem about "Use Legacy Swift Language Version..", my have solved it by setting the version, The tips to resolve the problem are:
If your target already added CocoaPods, please add that code in the end of your podFile:
post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['SWIFT_VERSION'] = '3.0' end end end
after add that code, please update cocoaPods.
-----If you not add cocoaPods ,you can set the targets’ version be YES(TARGETS->Build Setting-->Use Legacy Swift Language Version-->YES) Hope that can help you.