gpt4 book ai didi

ios - 在 webview 中从 pdf 中选择文本

转载 作者:行者123 更新时间:2023-12-01 16:43:51 25 4
gpt4 key购买 nike

我正在使用 UIGraphicsBeginPDFPageWithInfo 制作 pdf从图像中,然后将该 pdf 加载到 UIWebView .

我想从该 pdf 中选择一些文本并将其显示在 textview 上。这是我用来在 Web View 上加载 pdf 的代码示例。

NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *filePath = [documentsDirectory stringByAppendingPathComponent:@"images.pdf"];

NSURL *pdfUrl = [NSURL fileURLWithPath:filePath];
NSLog(@"pdf URL :: %@",pdfUrl);
NSURLRequest *request = [NSURLRequest requestWithURL:pdfUrl];
[_webView loadRequest:request];

我尝试使用以下内容,但它返回一个空白字符串。
NSString *innerText = [_webView stringByEvaluatingJavaScriptFromString:@"document.body.innerText"];

编辑::我想要 ibooks 中实现的文本选择功能。

最佳答案

你能在 gitHub 中看到这个例子吗:https://github.com/KurtCode/PDFKitten

关于ios - 在 webview 中从 pdf 中选择文本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21880272/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com