无法将本地PDF文件加载到webview

时间:2015-09-07 16:03:47

标签: ios swift pdf

我正在尝试将我的xcode项目中的PDF文件加载到我在ViewDidLoad

中使用此代码的Web视图
var pdfLoc = NSURL(fileURLWithPath:NSBundle.mainBundle().pathForResource("Anteproyecto", ofType:"pdf")!)
    var request = NSURLRequest(URL: pdfLoc!)
    webView.loadRequest(request)

昨天它有效,但今天它会在日志中显示并显示此错误

DiskImageCache: Could not resolve the absolute path of the old directory.

我做错了什么?

1 个答案:

答案 0 :(得分:0)

请试试这个

var path: String = NSBundle.mainBundle().pathForResource(fileName, ofType: "pdf")
var targetURL: NSURL = NSURL.fileURLWithPath(path)
var request: NSURLRequest = NSURLRequest.requestWithURL(targetURL)
self.webView.loadRequest(request)

我希望它会奏效。