ExtensionDelegate.swift 未调用

问题描述 投票:0回答:2

首先我想说我知道存在这样的问题,但我在我读过的内容中没有找到任何可以解决我的问题的内容。

我的最终目标是拥有像倒计时时钟这样的手表复杂功能。 我有一个 iOS 应用程序,它从 socketIO 文件读取信息并将该文件中的信息存储在 GlobalVarible.swift 文件中。

在我的 iOS ContentView 中,我读取该 GlobalVarible 并显示它。 我还从同一个 GlobalVarible 文件中读取并在 WatchKit Extension -> ContentView 上显示此信息。

这是有效的,但是当我尝试将信息获取到我的 ComplicationController 时,socketIO 信息尚未更改变量,因此我需要每秒安排首选的新条目,但如果我可以通过更新使其工作,我可以采取解决方法每分钟。

有人向我展示我可以使用

getTimelineEntries
,但如果我在此链接中进行链接,它将加载 100 个条目并更新 100 次,但我的 GlobalVaribel 文件中的信息会存储第一秒或默认信息 100 次。这种方法对我来说不起作用。 如何刷新WatchApp并发症

这让我看到了一篇

CreatingAndUpdatingAComplicationsTimeline
的帖子,其中附有一个我可以查看并尝试解决问题的项目。在该文档和另一篇文章中,我可以读到我应该使用“ExtensionDelegate”

现在的问题是这个文件和其中的所有内容永远不会触发,我不知道从哪里开始搜索如何触发它? 我尝试记录此委托中的所有不同功能,但没有一个功能被触发,这就是我认为该文件未加载到应用程序中的原因。

/*
See LICENSE folder for this sample’s licensing information.

Abstract:
A delegate object for the WatchKit extension that implements the needed life cycle methods.
*/

import ClockKit
import WatchKit
import os

// The app's extension delegate.
class ExtensionDelegate: NSObject, WKExtensionDelegate {
    func applicationDidFinishLaunching(){
        print("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!")
        print("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!")
        print("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!")
        print("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!")
        print("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!")
        print("!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!")
    }
    func applicationDidBecomeActive(){
        print("--------------------------------------------------")
        print("applicationDidBecomeActive")
        print("--------------------------------------------------")

        
    }
    func applicationWillResignActive(){
        print("--------------------------------------------------")
        print("applicationWillResignActive")
        print("--------------------------------------------------")
    }
    func applicationWillEnterForeground(){
        print("--------------------------------------------------")
        print("applicationWillEnterForeground")
        print("--------------------------------------------------")
    }
    func applicationDidEnterBackground(){
        print("--------------------------------------------------")
        print("applicationDidEnterBackground")
        print("--------------------------------------------------")
    }


    func handle(_ backgroundTasks: Set<WKRefreshBackgroundTask>) {
        print("__________________________________________________")
        print("Handling a background task...")
        print("App State: \(WKExtension.shared().applicationState.rawValue)")
        print("__________________________________________________")

        
        for task in backgroundTasks {
            print("++++++++++++++++++++++++++++++++++++++++++++++++++")
            print("Task: \(task)")
            print("++++++++++++++++++++++++++++++++++++++++++++++++++")

            switch task {
            // Handle background refresh tasks.
            case let backgroundTask as WKApplicationRefreshBackgroundTask:
                scheduleBackgroundRefreshTasks()
                backgroundTask.setTaskCompletedWithSnapshot(true)
            case let snapshotTask as WKSnapshotRefreshBackgroundTask:
                snapshotTask.setTaskCompleted(restoredDefaultState: true, estimatedSnapshotExpiration: Date.distantFuture, userInfo: nil)
            case let connectivityTask as WKWatchConnectivityRefreshBackgroundTask:
                connectivityTask.setTaskCompletedWithSnapshot(false)
            case let urlSessionTask as WKURLSessionRefreshBackgroundTask:
                urlSessionTask.setTaskCompletedWithSnapshot(false)
            case let relevantShortcutTask as WKRelevantShortcutRefreshBackgroundTask:
                relevantShortcutTask.setTaskCompletedWithSnapshot(false)
            case let intentDidRunTask as WKIntentDidRunRefreshBackgroundTask:
                intentDidRunTask.setTaskCompletedWithSnapshot(false)
            default:
                task.setTaskCompletedWithSnapshot(false)
            }
        }
    }
}

func scheduleBackgroundRefreshTasks() {
    
    
    print("**************************************************")
    print("Scheduling a background task.")
    print("**************************************************")

    let watchExtension = WKExtension.shared()
    let targetDate = Date().addingTimeInterval(3*60)
    
    watchExtension.scheduleBackgroundRefresh(withPreferredDate: targetDate, userInfo: nil) { (error) in
        if let error = error {
            print("An error occurred while scheduling a background refresh task: \(error.localizedDescription)")
            return
        }
        
        print("Task scheduled!")
    }
}

整个项目都在这里

https://github.com/mattehalen/Scheduled-countdown-WatchKit/tree/iPhone%26WatchApp
ios swift xcode delegates watchkit
2个回答
3
投票

事实证明我使用的是 SwiftUI 2.0 和 SwiftApp 生命周期。

要解决此问题,我需要将以下代码添加到我的

Scheduled_countdownApp.swift

    @WKExtensionDelegateAdaptor(ExtensionDelegate.self) var delegate
    @Environment(\.scenePhase) var scenePhase

使用

@Environment
我可以使用下面的代码,但因为我已经有了 ExtensionDelegate,所以我只是将其注释掉。

//        .onChange(of: scenePhase) { phase in
//            switch phase{
//            case .active:
//                print("->->->->->->->->->->->->->->->->->->->->->->->->->->->->->->")
//                print("Active")
//                print("->->->->->->->->->->->->->->->->->->->->->->->->->->->->->->")
//            case .inactive:
//                print("->->->->->->->->->->->->->->->->->->->->->->->->->->->->->->")
//                print("inactive")
//                print("->->->->->->->->->->->->->->->->->->->->->->->->->->->->->->")
//            case .background:
//                print("->->->->->->->->->->->->->->->->->->->->->->->->->->->->->->")
//                print("background")
//                print("->->->->->->->->->->->->->->->->->->->->->->->->->->->->->->")
//            @unknown default:
//                print("something new added by apple")
//            }
//        }

完整代码

//  Scheduled_countdownApp.swift
//  WatchApp WatchKit Extension
//
//  Created by Mathias Halén on 2021-06-22.
//  Copyright © 2021 Mathias Halén. All rights reserved.
//

import SwiftUI

@main
struct Scheduled_countdownApp: App {
    @WKExtensionDelegateAdaptor(ExtensionDelegate.self) var delegate
    //@UIApplicationDelegateAdaptor(ExtensionDelegate.self) var appDelegate
    @Environment(\.scenePhase) var scenePhase
    
    @SceneBuilder var body: some Scene {
        WindowGroup {
            NavigationView {
                ContentView()
            }
        }
//        .onChange(of: scenePhase) { phase in
//            switch phase{
//            case .active:
//                print("->->->->->->->->->->->->->->->->->->->->->->->->->->->->->->")
//                print("Active")
//                print("->->->->->->->->->->->->->->->->->->->->->->->->->->->->->->")
//            case .inactive:
//                print("->->->->->->->->->->->->->->->->->->->->->->->->->->->->->->")
//                print("inactive")
//                print("->->->->->->->->->->->->->->->->->->->->->->->->->->->->->->")
//            case .background:
//                print("->->->->->->->->->->->->->->->->->->->->->->->->->->->->->->")
//                print("background")
//                print("->->->->->->->->->->->->->->->->->->->->->->->->->->->->->->")
//            @unknown default:
//                print("something new added by apple")
//            }
//        }
        WKNotificationScene(controller: NotificationController.self, category: "myCategory")
    }
}

0
投票

我对

WatchKit
有类似的问题,而不是
SwiftUI
应用程序。我通过编辑 Info.plist 解决了这个问题。在
WKExtensionDelegateClassName
下我有:

<string>ExtensionDelegate</string> 

添加模块名称前缀和ExtensionDelegate开始接收事件:

<string>$(PRODUCT_MODULE_NAME).ExtensionDelegate</string>`
© www.soinside.com 2019 - 2024. All rights reserved.