gpt4 book ai didi

iOS 创建具有动态内容的 PDF

转载 作者:可可西里 更新时间:2023-11-01 17:16:42 25 4
gpt4 key购买 nike

我想制作具有动态内容的 PDF,例如文本将是动态的,图像将是动态的,因此取决于类(class)页面的内容也将是动态的,我已遵循本教程 http://code.tutsplus.com/tutorials/generating-pdf-documents--mobile-11265

但在本教程中内容不是动态的。

最佳答案

您可以像这样使用 javaScript 为您的动态值传递值

假设您的 HTML 中有一个键“myKey”

<td><span class="fieldVal" id="myKey"></span></td>

然后像这样传递值

NSBundle *bundle = [NSBundle mainBundle];
NSURL *indexFileURL = [bundle URLForResource:@"name_of_your_local_html" withExtension:@"html"];
[wbView loadRequest:[NSURLRequest requestWithURL:indexFileURL]];
[wbView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"document.getElementById('myKey').innerHTML='%@'",@"myValue"]];

现在要将 HTML 转换为 PDF,您可以使用此类

https://github.com/iclems/iOS-htmltopdf/blob/master/NDHTMLtoPDF.h

关于iOS 创建具有动态内容的 PDF,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27838139/

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