gpt4 book ai didi

swift - 应用程序 :continueUserActivity:restorationHandler: is not getting called when using handoff

转载 作者:行者123 更新时间:2023-11-28 13:29:25 24 4
gpt4 key购买 nike

我在我的测试设备(不使用模拟器)和 SwiftUI 上使用最新版本的 Xcode、macOS、iOS

我的 UI 与 SwiftUI 和我的 UserActivity DelegateHandler:

struct UserActivityDelegateObserver: UIViewRepresentable {
@Binding var textData: String

func makeUIView(context: Context) -> UIView { return UIView() }

func updateUIView(_ uiView: UIView, context: Context) {
context.coordinator.userActivity?.needsSave = true
}

func makeCoordinator() -> Coordinator {
Coordinator(textData: _textData)
}

class Coordinator: UIResponder, NSUserActivityDelegate {
@Binding var textData: String

init(textData: Binding<String>) {
self._textData = textData
super.init()

self.userActivity = NSUserActivity(activityType: "com.domain.appname.activity")
self.userActivity!.title = "My Activity"
self.userActivity!.userInfo = ["Key": textData.wrappedValue]
self.userActivity!.isEligibleForHandoff = true
self.userActivity!.becomeCurrent()
}

override func updateUserActivityState(_ activity: NSUserActivity) {
activity.addUserInfoEntries(from: ["Key": textData])
super.updateUserActivityState(activity)
}
}
}

struct ContentView: View {
@State var textData: String = "Placeholder"

var body: some View {
NavigationView {
ZStack {
UserActivityDelegateObserver(textData: $textData)
Form {
Section {
TextField("Placeholder", text: $textData)
}
}
}
.navigationBarTitle("Title", displayMode: .inline)
}
}
}

在我的 appdelegate 中:

func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([UIUserActivityRestoring]?) -> Void) -> Bool {
print("this is not getting called")
return true
}

当我在一台设备上启动该应用程序并使用我的另一台设备进入该菜单(双击主页按钮时)并单击屏幕底部我的测试应用程序的切换符号时,该应用程序启动但函数 application:continueUserActivity:restorationHandler: 永远不会被调用,所以我无法继续,它显示了通过单击启动应用程序时的标准行为。知道这是为什么吗?

最佳答案

这可能是一个错误 this post报告了同样的问题,但仍然没有答案,所以我认为这可能是 Xcode 测试版的错误。

关于swift - 应用程序 :continueUserActivity:restorationHandler: is not getting called when using handoff,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57664504/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com