如何使用Swift从WebView中获取选定的单词?

时间:2015-12-01 20:18:11

标签: ios swift webview

我正在以这种方式加载本地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文件。

非常感谢!

0 个答案:

没有答案