11

我想将更改的文件加载到 UIWebView 中,并且我希望它们在 file:// 方案下加载,这样我就可以在我的页面中包含其他 file:// 资源(例如 html5 视频元素)。为此,我实现了自己的 NSURLProtocol 并覆盖了 file:// URL 子集的加载。

我的startLoading方法看起来像:

- (void) startLoading {
    ... data is populated ...
    [protocolClient URLProtocol:self didLoadData:data];
    [protocolClient URLProtocolDidFinishLoading:self];
}

这在 iOS4/5 上运行良好,但在 iOS 6 beta 4 上出现以下错误:

2012-08-21 16:06:07.236 TemplateApp[57283:1d403] 57283: CFNetwork internal error (0xc01a:/SourceCache/CFNetwork_Sim/CFNetwork-606/Connection/URLConnectionClient.cpp:2341)
/SourceCache/WebCore_Sim/WebCore-1634/wak/WKView.mm:385 void WKViewAddSubview(WKViewRef, WKViewRef):  invalid parameter
2012-08-21 16:06:07.272 TemplateApp[57283:1e603] *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** -[__NSSetM addObject:]: object cannot be nil'
*** First throw call stack:
(0x29d0552 0x2733e7e 0x2a5dc08 0x69c6c1e 0x69c4c88 0x69c543b 0x5b40dbd 0x5b40f0f 0x5b3c240 0x5ff8060 0x5ff75d1 0x5eb8d08 0x65a4fb2 0x678486f 0x677fa3d 0x7b3ab1 0x7b2d63 0x7f0e5a 0x2972ebd 0x7f14dc 0x7f1455 0x6db410 0x29544ff 0x2953f2f 0x2976cf4 0x2976504 0x29763db 0x69d0530 0x907caed9 0x907ce6de)
libc++abi.dylib: terminate called throwing an exception

我通过添加didReceiveResponse对我的startLoading方法的调用解决了这个问题,如下所示:

- (void) startLoading {
    ... data is populated ...
    [protocolClient URLProtocol:self didReceiveResponse:[[NSURLResponse alloc] init] cacheStoragePolicy:NSURLCacheStorageAllowed]
    [protocolClient URLProtocol:self didLoadData:data];
    [protocolClient URLProtocolDidFinishLoading:self];
}

但是现在在 iOS 5 和 6 上尝试加载页面时出现以下错误:

Webview error: Error Domain=WebKitErrorDomain Code=102 "Frame load interrupted" UserInfo=0x9d4c0a0 {NSErrorFailingURLKey=file:///src/index.html, NSErrorFailingURLStringKey=file:///src/index.html, NSLocalizedDescription=Frame load interrupted}

我在didReceiveResponse方法中尝试了各种不同的 NSURLResponse 对象,但它们都不允许 WebView 加载页面。使用 file:// 以外的 URL 方案也可以,但是我不能将 file:// 路径用于嵌入的资源,例如 HTML5 视频。

有没有办法让我将特定 file:// URL 的动态内容加载到适用于 iOS 6 beta 4 的 UIWebView 中?

4

2 回答 2

1

也遇到了这个。这是我认为可行的解决方法,但不适用于history.back()并且需要对 UIWebView 的全局引用。

- (void)startLoading {
    NSURL* insteadURL = ...;
    NSURLRequest* request = [self request];
    BOOL isTopLevelNavigation = [request.URL isEqual:request.mainDocumentURL];

    // iOS 6+ just gives "Frame load interrupted" when you try and feed it data via a URLProtocol.
    if (isTopLevelNavigation) {
        [gWebView loadData:[NSData dataWithContentsOfURL:insteadURL] MIMEType:@"text/html" textEncodingName:@"utf8" baseURL:[request URL]];
    } else {
        ...
    }
}
于 2013-10-17T16:30:48.703 回答
1

我目前在将内容加载到 UIWebView 时遇到了一些其他问题,但我认为您需要NSURLResponse使用initWithURL:MIMEType:expectedContentLength:textEncodingName:

否则,我认为您没有有效的响应对象。我遇到的问题是,在我被调用之前,我得到了“错误的 URL” startLoading

更新:我现在开始工作了,显然我canonicalRequestForRequest:很傻

于 2012-08-24T20:37:05.693 回答