我有一个主要的故事板和用于AR演示的ARSet UIViewController。我希望用户点击使用SwiftUI创建的Home.swift中的按钮,导航到ARSet以启动AR会话。
(在Xcode 11 beta 2上)
PresentationButton(destination: ARset()
, label:
{
Text("Start")
.color(.red)
.padding()
.background(Color.white)
.cornerRadius(3.0)
}
)
构建失败。我知道这不应该是那么简单,但是我不知道该怎么办。