SwiftUi在应用程序中的目的地深链接?

发布于 2025-01-19 06:06:51 字数 525 浏览 0 评论 0原文

我发现 Android 在应用程序内有一个指向特定目的地的深层链接。 (https://developer.android.com/guide/navigation/navigation-deep -链接)。但是,我不知道如何使用 SwiftUI 来实现这一点,SwiftUI 仅限于 NavigationView/NavigationLink。

例如,当点击横幅时,它会直接转到“事件”选项卡和一个特定的事件页面(即 Web 视图)。

输入图片这里的描述

如果用SwiftUI没有办法实现,我什至想知道用UIKit的方式。 谢谢。

I figured out Android has a deep link for a specific destination within app.
(https://developer.android.com/guide/navigation/navigation-deep-link). However, I don't know how to implement this with SwiftUI which is limited to NavigationView/NavigationLink.

For Example, when tapped a banner it directly goes to Event Tab and a specific event page which is a WebView.

enter image description here

If there is no way to implement it with SwiftUI, I even want to know the way with UIKit.
Thanks.

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

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

发布评论

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

评论(1

血之狂魔 2025-01-26 06:06:51

使用 .handlesexternalevents(prefering:prefering:允许:允许:)代码> onopenurl(percor> onopenurl) /代码>如下:

@main
struct DeepLinkApp: App {    
    var body: some Scene {
        WindowGroup {
            ContentView()
            .handlesExternalEvents(preferring: ["scheme"], allowing: ["scheme"])
        }
    }
}

struct ContentView: View {
    var body: some View {
        NavigationView {

        }
        .onOpenURL{ url in
            // set state from the url
        }
    }
}

Use .handlesExternalEvents(preferring:allowing:) and onOpenURL(perform:) as follows:

@main
struct DeepLinkApp: App {    
    var body: some Scene {
        WindowGroup {
            ContentView()
            .handlesExternalEvents(preferring: ["scheme"], allowing: ["scheme"])
        }
    }
}

struct ContentView: View {
    var body: some View {
        NavigationView {

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