我是 swift 的初学者,并开始使用 Reality Composer 和 ARkit3 创建图像跟踪 AR 应用程序。
我正在尝试将 Reality Composer 制作的场景添加到下面的示例中。
https://developer.apple.com/documentation/arkit/detecting_images_in_an_ar_experience
在我的Xcode项目中拖拽.rcproject文件,在下面添加代码,但是出现错误。
guard let anchor = try? MyProject.loadMyGreatScene() else { return }
arView.scene.anchors.append(anchor)
堆栈跟踪如下;
Build target ARKitImageDetection of project ARKitImageDetection with configuration Debug
RCProjectCodegen /Users/Kageori/Downloads/Pop.rcproject (in target 'ARKitImageDetection' from project 'ARKitImageDetection')
cd /Users/Kageori/Documents/git/source/playground/AR-xcode
/Applications/Xcode.app/Contents/Developer/usr/bin/rctool generate -o=/Users/Kageori/Library/Developer/Xcode/DerivedData/ARKitImageDetection-ahoeapgfbqqtzkftcohcfoohqffu/Build/Intermediates.noindex/ARKitImageDetection.build/Debug-iphoneos/ARKitImageDetection.build/DerivedSources/RCProjectGenerated/Pop /Users/Kageori/Downloads/Pop.rcproject --swift-version=4.0
error: unsupported swift version
我看到了以下解决方案并修复了 Swift 编译器语言,但没有奏效。
如何修复 Xcode 10.2 中的“SWIFT_VERSION '3.0' 不受支持,支持的版本为:4.0、4.2、5.0”错误?
我应该怎么做才能修复它?
Xcode 版本:11.3.1 (11C504)