15

点击 WidgetKit 小部件会自动启动其父应用程序。如何检测我的应用程序是否是从其 WidgetKit 小部件扩展启动的?

我无法在应用程序AppDelegate和/或SceneDelegate.

4

3 回答 3

23

要检测从父应用程序支持场景的 WidgetKit 小部件扩展中启动的应用程序,您需要实现scene(_:openURLContexts:)以从后台状态启动,以及实现scene(_:willConnectTo:options:)以启动从冷状态,在您的父应用程序的SceneDelegate. 此外,将widgetURL(_:)添加到小部件的视图中。

小部件View

struct WidgetEntryView: View {
    
    var entry: SimpleEntry
    
    private static let deeplinkURL: URL = URL(string: "widget-deeplink://")!

    var body: some View {
        Text(entry.date, style: .time)
            .widgetURL(WidgetEntryView.deeplinkURL)
    }
    
}

家长申请SceneDelegate

// App launched
func scene(_ scene: UIScene, willConnectTo session: UISceneSession, options connectionOptions: UIScene.ConnectionOptions) {
    guard let _: UIWindowScene = scene as? UIWindowScene else { return }
    maybeOpenedFromWidget(urlContexts: connectionOptions.urlContexts)
}

// App opened from background
func scene(_ scene: UIScene, openURLContexts URLContexts: Set<UIOpenURLContext>) {
    maybeOpenedFromWidget(urlContexts: URLContexts)
}

private func maybeOpenedFromWidget(urlContexts: Set<UIOpenURLContext>) {
    guard let _: UIOpenURLContext = urlContexts.first(where: { $0.url.scheme == "widget-deeplink" }) else { return }
    print(" Launched from widget")
}
于 2020-09-03T01:30:41.393 回答
7

如果您正在为 Widget UI 设置 widgetURL 或 Link 控件,则包含的应用程序将以application(_:open:options:). 您可以在 URL 中设置其他数据以了解来源。

如果您不使用 widgetUrl 或链接控件,则包含应用程序将打开application(_:continue:restorationHandler:)userInfo具有WidgetCenter.UserInfoKey. 这应该告诉您从小部件打开的应用程序和有关用户交互的信息。

于 2020-09-02T01:59:30.203 回答
7

SwiftUI 2 生命周期

  1. 添加widgetURL到您的小部件视图:
struct SimpleWidgetEntryView: View {
    var entry: SimpleProvider.Entry

    private static let deeplinkURL = URL(string: "widget-deeplink://")!

    var body: some View {
        Text("Widget")
            .widgetURL(Self.deeplinkURL)
    }
}
  1. 检测应用程序是否使用以下深度链接打开onOpenURL
@main
struct WidgetTestApp: App {
    @State var linkActive = false

    var body: some Scene {
        WindowGroup {
            NavigationView {
                VStack {
                    NavigationLink("", destination: Text("Opened from Widget"), isActive: $linkActive).hidden()
                    Text("Opened from App")
                }
            }
            .onOpenURL { url in
                guard url.scheme == "widget-deeplink" else { return }
                linkActive = true
            }
        }
    }
}

这是一个GitHub 存储库,其中包含不同的 Widget 示例,包括 DeepLink Widget。

于 2020-10-01T19:43:30.753 回答