地标Swiftui教程 - 创建WatchOS应用 - 导航损坏

发布于 2025-01-21 06:47:48 字数 1058 浏览 0 评论 0 原文

我只是在做SwiftUi教程,我陷入(第4节,添加地标列表)。 到目前为止,一切正常,WatchOS上的导航链接不起作用,只是什么都没有。 我在stackoverflow上发现了在评论中有相同问题的人,但是没有任何答复。 ( navigationLink在watchos上破裂了? 该怎么做才能启动工作链接? :D

代码:

ForEach(filteredLandmarks) { landmark in
                    NavigationLink {
                        LandmarkDetail(landmark: landmark)
                    } label: {
                        LandmarkRow(landmark: landmark)
                    }
                }.navigationTitle("Landmarks")

项目文件:

I'm just doing SwiftUI tutorial and I'm stuck at https://developer.apple.com/tutorials/swiftui/creating-a-watchos-app (section 4, Add the Landmarks List).
Everything worked fine till now, navigation links on the watchOS are not working, just nothing happens.
I found on StackOverflow someone with same problem in comments, but there wasn't any reply. (NavigationLink broken on watchOS?) Someone said It's broken since watchOS 8.1.
What to do to start the links working? :D

Code:

ForEach(filteredLandmarks) { landmark in
                    NavigationLink {
                        LandmarkDetail(landmark: landmark)
                    } label: {
                        LandmarkRow(landmark: landmark)
                    }
                }.navigationTitle("Landmarks")

Project files:
https://docs-assets.developer.apple.com/published/d46bb54c0c90d4e01351338f4627245e/15600/CreatingAwatchOSApp.zip

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

萌酱 2025-01-28 06:47:48

我只是在实时预览中遇到了同一问题。挖掘我找不到解决方案,但是当我在模拟器中运行该应用程序时,链接确实有效。这是Xcode 13.4.1。

I just ran into the same issue in the live preview. Digging around I couldn't find a solution, but when I ran the app in the simulator, the links did work. This was with Xcode 13.4.1.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文