我正在以这种方式加载本地pdf文件
let myProjectBundle: NSBundle = NSBundle.mainBundle()
let filePath: String = myProjectBundle.pathForResource("test2", ofType: "pdf")!
let myURL = NSURL(string: filePath)
let myURLRequest: NSURLRequest = NSURLRequest(URL: myURL!)
self.webView.loadRequest(myURLRequest)
我如何获得选定的单词?这个每次都返回空字符串
webView.stringByEvaluatingJavaScriptFromString("window.getSelection().toString();")
不适用于pdf文件。
非常感谢!