gpt4 book ai didi

iphone - Webview 中的 PDF 性能

转载 作者:行者123 更新时间:2023-12-03 21:22:11 24 4
gpt4 key购买 nike

我正在使用以下(简单)代码将 PDF 从我的应用程序中的文档文件夹加载到 UIWebView 中。性能很差。我尝试通过 Safari 从网络加载相同的 PDF,性能非常好。有人有什么想法吗? (此 viewController 被呈现为 modalViewController)。

-firstView.m

InfoViewController *mcontroller = [[InfoViewController alloc] init];

NSArray* paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory,
NSUserDomainMask, YES);
NSString *docsPath = [paths objectAtIndex:0];


NSString *pathToPDF = [NSString stringWithFormat:@"%@/myPDF.PDF",docsPath];

NSURL *targetURL = [NSURL fileURLWithPath:pathToPDF];

mcontroller.urlToFile = targetURL;
[self presentModalViewController:mcontroller animated:YES];

modalViewController.m -

- (void)viewDidLoad {
[super viewDidLoad];

NSURLRequest *request = [NSURLRequest requestWithURL:urlToFile];

[webView loadRequest:request];




}

最佳答案

我最终使用 documentInteractionController 来在“快速查看”中显示 PDF。 2010 年 WWDC 视频中有一个很棒的教程。

不知道为什么它在 webView 中效果不佳,但在 Quick Look 中却如丝绸般光滑。

关于iphone - Webview 中的 PDF 性能,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3663967/

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