gpt4 book ai didi

ios - 如何在 iOS 中生成共享链接?

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

我想使用 what's app 或 facebook 等向某些用户分享产品的 url、产品名称。当用户点击该产品时,如果安装了应用程序,则应打开应用程序中的相同产品页面。如果应用程序未安装,它应该导航到应用程序商店。现在如何生成可共享链接,以便在用户点击时打开应用程序中的同一页面?

最佳答案

要解决此问题,您需要实现通用链接。

在Target->Capabilities->Associated Domain->Domains->Add server url中添加applink:

enter image description here

func application(_ application: UIApplication, continue userActivity: NSUserActivity, restorationHandler: @escaping ([Any]?) -> Void) -> Bool {
print("Continue User Activity called: ")
if userActivity.activityType == NSUserActivityTypeBrowsingWeb {
let url = userActivity.webpageURL!
print(url.absoluteString)
//handle url and open whatever page you want to open.
}
return true
}

查看以下帖子了解更多信息 https://medium.com/@abhimuralidharan/universal-links-in-ios-79c4ee038272

关于ios - 如何在 iOS 中生成共享链接?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55214942/

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