gpt4 book ai didi

iOS 从应用程序内给定的 url 查看 PDF

转载 作者:行者123 更新时间:2023-11-29 02:12:14 24 4
gpt4 key购买 nike

我想从给定的 url(互联网上的某个地方)打开并显示一个 pdf 文件,并在我的 iOS 应用程序中查看它。你能告诉我解决这个问题的可能方法是什么,并列出它们的优缺点/局限性吗?我听说过 UIWebView,还有其他选择吗?

最佳答案

我的建议是使用 WebView 。

- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.

NSURL *url = [NSURL URLWithString:@"https://developer.apple.com/library/mac/documentation/Cocoa/Conceptual/ProgrammingWithObjectiveC/ProgrammingWithObjectiveC.pdf"];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[self.webview loadRequest:request];
}

如果您想了解更多信息,请参阅以下链接

https://developer.apple.com/library/ios/documentation/GraphicsImaging/Conceptual/drawingwithquartz2d/dq_pdf/dq_pdf.html

关于iOS 从应用程序内给定的 url 查看 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29163787/

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