gpt4 book ai didi

ios - 在 UIWebView 中查看 PDF

转载 作者:行者123 更新时间:2023-11-29 04:17:35 24 4
gpt4 key购买 nike

我的应用程序的“支持文件”文件夹包含一个名为 test.pdf 的文档。尝试在 ViewDidLoad 中使用以下代码查看 pdf 文件会显示一个空的 UIWebView:

NSString *testPath = [[NSBundle mainBundle] pathForResource:@"test" ofType:@"pdf"];
NSURL *testURL = [NSURL URLWithString:testPath];
NSURLRequest *testRequest = [NSURLRequest requestWithURL:testURL];

UIWebView *documentWebView;

documentWebView = [[UIWebView alloc] initWithFrame:CGRectMake(10, 24, 300, 400)];

[documentWebView loadRequest:testRequest];

[self.view addSubview:documentWebView];

谁能告诉我为什么 PDF 没有在 WebView 中显示?谢谢。

最佳答案

这一行:

NSURL *testURL = [NSURL URLWithString:testPath];

需要:

NSURL *testURL = [NSURL fileURLWithPath:testPath];

关于ios - 在 UIWebView 中查看 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13464525/

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