使用未解析的标识符“PresentationButton”,是否为“PresentationButton”引入了新的类?

是否有人在代码中使用过“PresentationButton”?我想在单击图像或内容框架时打开一个 View 。


PresentationButton(destination: ContentView()) {
    CourseView()
}


我确实试图在Apple开发人员的网站上找到文档,但没有看到任何文档。

最佳答案

如果您不是以模态显示 View (在这种情况下,.sheet是可行的方式),那么Xcode 11 beta 5中的首选方法是使用NavigationLink

NavigationLink(destination: ContentView()) {
            Text("show ContentView")
        }

10-06 13:01