我的UIWebView
负责通过在此代码中提示UIAlertController
来下载可下载内容:
func webView(_ webView: UIWebView, shouldStartLoadWith request: URLRequest, navigationType: UIWebViewNavigationType) -> Bool {
let nvc = self.tabBarController?.viewControllers?[1] as! UINavigationController
let dvc = nvc.viewControllers[0] as! RCHDownloadTVC
var isDownloadable = false
let session = URLSession(configuration: URLSessionConfiguration.default())
var newRequest = URLRequest(url: request.url!)
newRequest.httpMethod = "HEAD"
let task = session.dataTask(with: newRequest) { (data, response, error) in
let httpResponse = response as? HTTPURLResponse
if httpResponse?.statusCode == 200 {
for (_, mime) in self.supportedFileTypes.enumerated() {
if response?.mimeType == mime {
self.showDownloadDecisionAlert(with: { (alert) in
self.sharedStore.addDownload(with: (request.url?.absoluteString)!)
dvc.reloadDownloadController()
self.webView.mediaPlaybackRequiresUserAction = true
self.webView.allowsInlineMediaPlayback = false
self.webView.goBack()
isDownloadable = true
}, completionHandlerTwo: { (alert) in
self.webView.mediaPlaybackRequiresUserAction = false
self.webView.allowsInlineMediaPlayback = true
isDownloadable = false
})
break
}
}
}
}
task.resume()
if isDownloadable != true {
return true
} else {
return false
}
}
如果文件不可下载,completionHandlerTwo
将被执行,但问题是执行completionHandlerTwo
,然后UIWebView的原生AVPlayerViewController显示我有此警告的视频
2016-06-21 14:36:14.962 DownloadAddict [1102:299310]此应用程序正在从后台线程修改autolayout引擎,这可能导致引擎损坏和奇怪的崩溃。这将在将来的版本中引发异常。
Stack trace:(
0 CoreFoundation 0x0000000183cb2dc8 <redacted> + 148
1 libobjc.A.dylib 0x0000000183317f80 objc_exception_throw + 56
2 CoreFoundation 0x0000000183cb2cf8 <redacted> + 0
3 Foundation 0x0000000184763b2c <redacted> + 88
4 Foundation 0x00000001845e4c3c <redacted> + 36
5 UIKit 0x0000000188f18d98 <redacted> + 64
6 UIKit 0x0000000188f198b0 <redacted> + 244
7 UIKit 0x00000001896a77f0 <redacted> + 268
8 UIKit 0x0000000189124aa0 <redacted> + 176
9 UIKit 0x0000000188e0c1e4 <redacted> + 656
10 QuartzCore 0x000000018679e994 <redacted> + 148
11 QuartzCore 0x00000001867995d0 <redacted> + 292
12 QuartzCore 0x0000000186799490 <redacted> + 32
13 QuartzCore 0x0000000186798ac0 <redacted> + 252
14 QuartzCore 0x0000000186798820 <redacted> + 500
15 WebCore 0x0000000188972270 <redacted> + 176
16 WebCore 0x0000000188934fa4 <redacted> + 368
17 CoreFoundation 0x0000000183c6909c <redacted> + 24
18 CoreFoundation 0x0000000183c68b30 <redacted> + 540
19 CoreFoundation 0x0000000183c66830 <redacted> + 724
20 CoreFoundation 0x0000000183b90c50 CFRunLoopRunSpecific + 384
21 WebCore 0x0000000187b7e61c <redacted> + 456
22 libsystem_pthread.dylib 0x0000000183917b28 <redacted> + 156
23 libsystem_pthread.dylib 0x0000000183917a8c <redacted> + 0
24 libsystem_pthread.dylib 0x0000000183915028 thread_start + 4
)
这意味着UI不在主线程上工作,为什么会发生这种情况?
答案 0 :(得分:2)
您需要致电
dispatch_async(dispatch_get_main_queue()) {...}
在session.dataTask
行之后在主线程上运行它。