gpt4 book ai didi

ios - Objective-C 从服务器显示 PDF

转载 作者:行者123 更新时间:2023-11-29 01:39:23 24 4
gpt4 key购买 nike

我正在尝试在我的应用程序中显示来自服务器的 PDF。

我试过文档交互 Controller 的路线,但它只显示应用程序内的文件,而不是网络外的文件:(

if (URL) {
// Initialize Document Interaction Controller
self.documentInteractionController = [UIDocumentInteractionController interactionControllerWithURL:URL];

// Configure Document Interaction Controller
[self.documentInteractionController setDelegate:self];

// Preview PDF
[self.documentInteractionController presentPreviewAnimated:YES];
}

UIWebView 会是我从服务器显示 PDF 的最佳解决方案吗?不是网站上的 PDF,而是服务器上的\SEVERNAME\LHSD\PDFs\example.pdf

最佳答案

在 objective-c 中显示 pdf 文件的最佳方式是在 UIWebView 中加载 pdf 文件。

试试这个:

NSString *stringUrl = @"YOUR-SERVER'S-PDF-FILE-URL";
NSURL *url = [NSURL URLWithString:stringUrl];
NSURLRequest *request = [NSURLRequest requestWithURL:url];

UIWebView *webViewObj = [[UIWebView alloc] initWithFrame:CGRectMake(10, 10, 300, 450)];
[webViewObj loadRequest:request];
[self.view addSubview:webViewObj];

关于ios - Objective-C 从服务器显示 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32587548/

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