WKWebview可以加载本地文件:ppt、pptx、word、excel等。(iOS9以上系统)
NSURL *fileURL = [NSURL fileURLWithPath:_filePath];
NSURL *accessURL = [fileURL URLByDeletingLastPathComponent];
[self.showFileWebView loadFileURL:fileURL allowingReadAccessToURL:accessURL];
碰到加载pptx文件时,报错:
The operation couldn't be completed.
(OfficeImportErrorDomain error 912.)
(null)
排查了下,发现是Xcode编译器的问题。升级Xcode即可解决问题。
目前在Xcode 11.2.1版本编译,能正常显示。
网友评论