wkwebview ios 10在重新创建webview后停止使用localfileurl加载文件

时间:2017-06-26 22:48:25

标签: ios swift3 autolayout wkwebview uiview-hierarchy

我对wkwebview和ios 10.3以及swift 3都有一种奇怪的行为。

我正在使用wkwebview来显示本地html文件(在Application Support下)。 在第一次启动时一切正常,本地网站(包括js和css)工作正常。但是,如果我从互联网上获取内容更新(涉及删除html目录并提取新文件),webview将不会加载文件。如果我只是尝试重用现有的webview:

self.webView?.loadFileURL(URL(fileURLWithPath: ( sharedConfig.WEBROOT + self.getIndexPage(requestProps.landingPage))), allowingReadAccessTo: sharedConfig.BASEURL)

或甚至使用javascript调用window.location.href='\(self.landingPage)'我在调试控制台中收到了相当奇怪的错误消息:

  

表面创建失败的大小:(0 0)和格式:(0)

如果我尝试使用以下命令重新初始化wkwebview:

`...

    DispatchQueue.main.async {

    for subview in self.view.subviews {
        if subview is WKWebView {
            subview.removeFromSuperview()
        }
    }

    let contentController = WKUserContentController();
    contentController.add(
        self,
        name: "callbackHandler"
    )
    let processPool: WKProcessPool = WKProcessPool.init()

    let config = WKWebViewConfiguration()
    config.processPool = processPool
    config.userContentController = contentController
     ...

    self.webView = WKWebView(
        frame: CGRect.zero,
        configuration: config
    )

    self.webView!.uiDelegate = self
    self.webView!.navigationDelegate = self

    self.webView!.translatesAutoresizingMaskIntoConstraints = false
    self.webView!.allowsBackForwardNavigationGestures = true

    let localfilePath = sharedConfig.WEBROOT + absPath

    let localFileUrl = URL(fileURLWithPath: localfilePath)


    self.webView?.tag = 12
    self.view.addSubview(self.webView!)
    let height = NSLayoutConstraint(item: self.webView!, attribute: .height, relatedBy: .equal, toItem: self.view, attribute: .height, multiplier: 1, constant: 0)
    let width = NSLayoutConstraint(item: self.webView!, attribute: .width, relatedBy: .equal, toItem: self.view, attribute: .width, multiplier: 1, constant: 0)
    self.view.addConstraints([height, width])
    _ = self.webView?.loadFileURL(localFileUrl, allowingReadAccessTo: sharedConfig.BASEURL)
    }

没有任何反应 - 没有更改显示的HTML,没有错误,没有冻结 - 本地网站照常工作(除了涉及loadFileURL调用的函数 - 但此代码适用于ios 9.3,我相信它在ios 10中工作一次

我也知道ios 10.3 beta中存在wkwebview问题和带空格的文件路径的错误 - 但我也用Documents dir测试了这个错误,结果相同。

但过了一会儿我得到了这个日志输出:

  

无法发出服务信号com.apple.WebKit.Networking:113:找不到指定的服务

此答案here表示,它可能与未正确添加webview作为子视图有关。但我无法看到将webview添加到子视图中是否有问题...

更新

进一步调试视图层次结构会导致“wkwebview”的模糊位置。

po [[UIWindow keyWindow] _autolayoutTrace]导致了这一点:

•UIWindow:0x7fbce4b06380 - AMBIGUOUS LAYOUT
|   UITransitionView:0x7fbce2424cc0
|   |   •UIView:0x7fbce2611430
|   |   |   *_UILayoutGuide:0x7fbce2612150
|   |   |   *_UILayoutGuide:0x7fbce260cf10
|   |   |   *WKWebView:0x7fbce508b000'Appname'- AMBIGUOUS LAYOUT for WKWebView:0x7fbce508b000'Appname'.minX{id: 72}, WKWebView:0x7fbce508b000'Appname'.minY{id: 73}
|   |   |   |   WKScrollView:0x7fbce508b600
|   |   |   |   |   WKContentView:0x7fbce5086000
|   |   |   |   |   |   UIView:0x7fbce25194c0
|   |   |   |   |   |   |   UIView:0x7fbce25136e0
|   |   |   |   |   |   |   |   WKCompositingView:0x7fbce261f4f0
|   |   |   |   |   |   |   |   |   WKCompositingView:0x7fbce26201c0
|   |   |   |   |   |   |   |   |   |   WKCompositingView:0x7fbce2620020
|   |   |   |   |   |   |   |   |   |   |   WKCompositingView:0x7fbce261fce0
|   |   |   |   |   |   |   |   |   |   |   |   WKCompositingView:0x7fbce2620500
|   |   |   |   |   |   |   |   |   |   |   WKCompositingView:0x7fbce261fe80
|   |   |   |   |   |   |   |   |   |   |   |   WKCompositingView:0x7fbce251a4d0
|   |   |   |   |   |   |   |   |   |   |   |   |   WKCompositingView:0x7fbce251a330
|   |   |   |   |   |   |   |   |   |   |   |   |   |   WKCompositingView:0x7fbce2522790
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   UIScrollView:0x7fbce4069000
|   |   |   |   |   |   |   |   |   |   |   |   |   |   |   |   WKCompositingView:0x7fbce251e230
|   |   |   |   |   |   |   |   |   |   WKCompositingView:0x7fbce261e280
|   |   |   |   |   |   |   |   |   WKCompositingView:0x7fbce2620360
|   |   |   |   |   UIView:0x7fbce2509060
|   |   |   |   |   UIImageView:0x7fbce4b1fb00
|   |   |   |   |   UIImageView:0x7fbce4b1f910

Legend:
    * - is laid out with auto layout
    + - is laid out manually, but is represented in the layout engine because translatesAutoresizingMaskIntoConstraints = YES
    • - layout engine host

但现在我还有更多问题:

  • “模糊布局”可能导致这种奇怪的WKWebView行为吗?
  • 如果是这样,我该如何解决这种歧义?

更新2:

感谢this answer我可以解决模糊的布局,并且视图层次结构调试器很高兴 - 但不幸的是,这并没有解决webview的问题 - 它仍然没有响应loadFileURL请求!

1 个答案:

答案 0 :(得分:0)

好的,最后我找到了解决方案:

我不小心创建了一个新的ViewController对象,而不是使用当前实例,我的代码在新的ViewController上初始化了另一个webview。

所以我以某种方式丢失了对旧的和可见的webview的引用,因此它不再响应了。

使用正确的实例后,一切正常。但我仍然想知道为什么这不会导致其他一些错误指向这一点。