作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想使用 what's app 或 facebook 等向某些用户分享产品的 url、产品名称。当用户点击该产品时,如果安装了应用程序,则应打开应用程序中的相同产品页面。如果应用程序未安装,它应该导航到应用程序商店。现在如何生成可共享链接,以便在用户点击时打开应用程序中的同一页面?
最佳答案
要解决此问题,您需要实现通用链接。
在Target->Capabilities->Associated Domain->Domains->Add server url中添加applink:
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/
我是一名优秀的程序员,十分优秀!