gpt4 book ai didi

objective-c - iPhone 应用程序的 PDF 渲染器

转载 作者:行者123 更新时间:2023-12-03 20:26:48 27 4
gpt4 key购买 nike

也许你知道一个好的用于 Objective-C 的开源 pdf 渲染器吗? :)

最佳答案

Core Graphics 提供了大量原生 PDF 渲染功能。如果您只想提供一个允许用户平移和缩放 PDF 的 View ,请使用 UIWebView;您所要做的就是为其提供 bundle 内 PDF 的 URL,如

NSString *resourcePath = [[NSBundle mainBundle] pathForResource:@"my_file" ofType:@"pdf"];
NSURL *url = [NSURL URLWithString:resourcePath];
[webView loadRequest:[NSURLRequest requestWithURL:url]];

关于objective-c - iPhone 应用程序的 PDF 渲染器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2652645/

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