首页 > 解决方案 > 如何在 Apple Watch 的扩展委托中访问 SwiftUI 内容视图?

问题描述

当应用程序激活时,我需要打电话给loadData我。是一个处理应用程序事件的类,例如. 但我不明白如何进入 ExtensionDelegate。ContentViewExtensionDelegateapplicationDidBecomeActiveContentView

这是我的ContentView

struct ContentView: View {

    let network = Network()

    @State private var currentIndex: Int = 0
    @State private var sources: [Source] = []

    var body: some View {
        ZStack {
            // Some view depends on 'sources'
        }
        .onAppear(perform: loadData)
    }

    func loadData() {
        network.getSources { response in
            switch response {
            case .result(let result):
                self.sources = result.results

            case .error(let error):
                print(error)
            }
        }
    }

}

并且ExtensionDelegate

class ExtensionDelegate: NSObject, WKExtensionDelegate {

    func applicationDidFinishLaunching() {

    }

    func applicationDidBecomeActive() {
        // Here I need to call 'loadData' of my ContentView
    }

    func applicationWillResignActive() {
    }
...

标签: swiftuiwatchkitapple-watch

解决方案


我看到的最简单的解决方案是使用通知

ContentView

let needsReloadNotification = NotificationCenter.default.publisher(for: .needsNetworkReload)

var body: some View {
    ZStack {
        // Some view depends on 'sources'
    }
    .onAppear(perform: loadData)
    .onReceive(needsReloadNotification) { _ in self.loadData()}
}

并且在ExtensionDelegate

func applicationDidBecomeActive() {
    NotificationCenter.default.post(name: .needsNetworkReload, object: nil)
}

在共享的某个地方

extension Notification.Name {
    static let needsNetworkReload = Notification.Name("NeedsReload")
}

推荐阅读