gpt4 book ai didi

swift - iOS 10 中的 Sirikit 和父应用程序通信 : Handoff

转载 作者:行者123 更新时间:2023-11-30 10:01:15 25 4
gpt4 key购买 nike

我正在使用 Sirikit 与我的支付域应用程序集成,我需要与该应用程序进行交互。我阅读了Apple文档,他们要求使用通用框架。是否可以使用切换?如果是的话怎么办?如何从 Sirikit 调用父应用程序中的另一个 viewController?

我将非常感谢您的帮助。谢谢

最佳答案

每个用户事件对象都需要一个类型,我们需要在

中定义这些类型

info.plist of the application

对于例如。

let userActivity = NSUserActivity(activityType: "uaType")
userActivity.title = "uaTitle"
userActivity.userInfo = ["uaKey": "uaValue"]

您现在可以在 AppDelegate 中访问此事件对象,如下所示

func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([Any]?) -> Void) -> Bool {

switch userActivity.activityType {
case "uaType":
//Write your logic to access uaKey & uaValue here
return true
default: return false
}
}

关于swift - iOS 10 中的 Sirikit 和父应用程序通信 : Handoff,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38417719/

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