Prevent universal links from opening in `WKWebView`/`UIWebView`(防止通用链接在 `WKWebView`/`UIWebView` 中打开)
问题描述
当用户点击 WKWebView
中的通用链接时,将打开相应的应用程序(如果已安装).
When user tap on a universal link in WKWebView
, the corresponding app will be opened (if installed).
这在 Apple 搜索编程指南一个>
如果您实例化 SFSafariViewController、WKWebView 或 UIWebView 对象来处理通用链接,iOS 会在 Safari 中打开您的网站,而不是打开您的应用程序.但是,如果用户从嵌入式 SFSafariViewController、WKWebView 或 UIWebView 对象中点击通用链接,iOS 会打开您的应用.
If you instantiate a SFSafariViewController, WKWebView, or UIWebView object to handle a universal link, iOS opens your website in Safari instead of opening your app. However, if the user taps a universal link from within an embedded SFSafariViewController, WKWebView, or UIWebView object, iOS opens your app.
在我的应用中,我有一个 WKWebView
,但我不希望用户离开我的应用.我想处理我的 WKWebView
中的链接.
In my app, I have a WKWebView
, but I don't want the user to go out of my app. I want to handle the link within my WKWebView
.
如何防止通用链接打开?或者我可以知道一个 URL 是否可以被其他应用处理?
How do I prevent universal link from opening? Or can I know if a URL could be handle by other apps?
推荐答案
WebKit 源代码:
sourcecode for WebKit:
static const WKNavigationActionPolicy WK_API_AVAILABLE(macosx(10.11), ios(9.0)) _WKNavigationActionPolicyAllowWithoutTryingAppLink = (WKNavigationActionPolicy)(WKNavigationActionPolicyAllow + 2);
如果您使用 WKWebView
,只需使用 WKNavigationActionPolicyAllow
+ 2 而不是 WKNavigationActionPolicyAllow
if you are using WKWebView
, just use WKNavigationActionPolicyAllow
+ 2 instead of WKNavigationActionPolicyAllow
这篇关于防止通用链接在 `WKWebView`/`UIWebView` 中打开的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:防止通用链接在 `WKWebView`/`UIWebView` 中打开
基础教程推荐
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01