gpt4 book ai didi

ios - WKWebView 中的链接随机不可点击

转载 作者:IT王子 更新时间:2023-10-29 05:44:10 25 4
gpt4 key购买 nike

在我用 Swift 2.1 编写的 iOS 应用程序中,我使用 WKWebView 加载一个 HTML 字符串,该字符串是使用 JSON 解析器从 wordpress 博客加载的。

我实现了委托(delegate)方法 func webView(webView: WKWebView, decidePolicyForNavigationAction navigationAction: WKNavigationAction, decisionHandler: (WKNavigationActionPolicy) -> Void) { 并将 WKWebView 的导航委托(delegate)设置为 self 以便处理链接按下。

现在,当我打开包含 WKWebView 的 ViewController 时,此委托(delegate)方法被调用一次,这是您在加载 webView 时所期望的行为 - 因此委托(delegate)似乎已正确设置。

我现在的问题是,大多数情况下 webView 包含的链接不可点击。当您按下链接时,您通常会期望出现灰色背景,如下图所示。但大多数时候,当我按下一个链接时,灰色背景不会出现,所以当我触摸时,委托(delegate)方法不会被调用。这个问题肯定与 WKNavigationDelegate 配置错误无关,因为有时链接选择工作正常(大约 10 %)。

appearance of links when you select them

您知道为什么链接随机有时不可点击,有时可点击(10% 的情况)吗?


最佳答案

我假设你想要的是在某个地方有一些描述或文本,并允许在文本的某些部分内进行点击/点击,这就是你想要使用 WKWebView 的目的。 .

我使用 WKWebView 解决了这个问题我很久以前做的一些应用程序也是如此,当然有几种解决方案,它只是其中一种,没有别的。

正如某些人对您所说,您可以使用 loadHTMLString函数以 JSON 格式或任何您想要的方式从您的服务器加载 HTML 字符串,但 HTML 格式正确无误非常重要。

关于 loadHTMLString 的一个非常重要的点关于您的评论的功能 ...您通常会期望在按下链接时出现灰色背景,如下图所示,如果 HTML 没有某种类型,则不会发生这种情况的 CSS 样式,因为如果没有,它具有任何 <a><\a> 的默认样式.

那么让我们看下面的代码:

import UIKit
import WebKit

class ViewController: UIViewController, WKNavigationDelegate {

var wkWebView: WKWebView!

override func viewDidLoad() {
super.viewDidLoad()

// The part of the HTMl you want to show
let description = "Let's start to visit the <a href=\"http://www.apple.com/\">Apple</a> website first and then if you want the <a href=\"http://www.w3schools.com\">Developer Apple</a> website."


// The default HTML with body and styles formatted and the description inside using string interpolation.
let htmlString = "<html><head><style type=\"text/css\">body {font-family: \"Lato-Regular\";font-size: 35px;color: #333333;margin: 0;}a {text-decoration: none; color: #999;}</style></head><body>\(description)</body></html>"

let preferences = WKPreferences()
preferences.javaScriptEnabled = false

// Configuration for any preferences you want to set
let configuration = WKWebViewConfiguration()
configuration.preferences = preferences

wkWebView = WKWebView(frame: CGRectMake(5, 35, self.view.bounds.width, self.view.bounds.height), configuration: configuration)

if let theWebView = wkWebView {
theWebView.loadHTMLString(htmlString, baseURL: NSURL())
theWebView.navigationDelegate = self
self.view.addSubview(theWebView)
}
}

override func didReceiveMemoryWarning() {
super.didReceiveMemoryWarning()
// Dispose of any resources that can be recreated.
}

func webView(webView: WKWebView, didStartProvisionalNavigation navigation: WKNavigation!) {
UIApplication.sharedApplication().networkActivityIndicatorVisible = true
}


func webView(webView: WKWebView, didFinishNavigation navigation: WKNavigation!) {
UIApplication.sharedApplication().networkActivityIndicatorVisible = false
}

func webView(webView: WKWebView, didFailProvisionalNavigation navigation: WKNavigation!, withError error: NSError) {
let alert = UIAlertController(title: "Error", message: error.localizedDescription, preferredStyle: .Alert)
alert.addAction(UIAlertAction(title: "Ok", style: .Default) { (UIAlertAction) -> Void in
UIApplication.sharedApplication().networkActivityIndicatorVisible = false
})

presentViewController(alert, animated: true, completion: nil)
}
}

在上面的代码中我设置了变量description里面有一些带有可点击元素的文本,并添加了两个委托(delegate)方法 didStartProvisionalNavigationdidFinishNavigation显示networkActivityIndicatorVisible在状态栏中显示点击可点击文本时页面加载的一些进度。很高兴注意到在 htmlString 中变量我设置了一些样式来显示 <a>使用一些颜色和字体,由您决定。

我也添加了 didFailProvisionalNavigation在某些情况下显示警报的函数 url 对新的 HTTPTransportSecurityLayer 之类的内容无效添加的是 iOS 9 只允许 https,在某些情况下你可以使用它来验证 url 并知道错误的原因。

结果是正常的以下文本 UIViewController :

enter image description here

当您点击任何灰色文本时,url 将加载到相同的 WKWebView 中,当然,您可以对其进行个性化设置,使其在您使用的内部浏览器或其他方式中打开,这取决于您。

然后点击 Apple 就可以立即看到结果:

enter image description here

如果您点击 Developer Apple,您可以看到正在运行的警报,因为 http 协议(protocol)在 HTTPTransportSecurityLayer 中给出错误在 iOS 9 中:

enter image description here

如果您需要,我已经准备好将项目上传到 Github。希望对您有所帮助。

关于ios - WKWebView 中的链接随机不可点击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34693311/

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