Xcode - 可以在 *.html 文件中输出(数组)吗?

发布于 2024-12-17 01:14:18 字数 248 浏览 0 评论 0原文

是否可以将 Xcode 数组实现为 *.html 文件?

*.html 是我的应用程序中的本地文件。输出是一个普通的 UiWebView。

<Doctype>
<html>
some text [myXcodeArray] some text
</html>

我想在 Xcode 中保存 TextInput。该数组应该是 *.html 中的输出 - 这可能吗?

Is it possible to implement a Xcode array to a *.html file?

The *.html is a local file in my app. The output is a normal UiWebView.

<Doctype>
<html>
some text [myXcodeArray] some text
</html>

I would like to save a TextInput in Xcode. This array should be the output in the *.html - Is that possible?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夜还是长夜 2024-12-24 01:14:18

您需要更明确地说明您要在这里完成的任务。那么您在 Objective-C 中有一个数组,并且您试图将该数组的内容转储到驻留在您的应用程序中的 HTML 文件中?

如果是这种情况,只需迭代数组并将元素转储到文件中即可。
尝试使用 KissXML 根据需要生成 XML。如果您需要解析 HTML,请查看 Ben Reeves HTML 解析器

You need to be a bit more explicit about what you're trying to accomplish here. So you have an array in objective-c and you're trying to dump the content of that array into an HTML file that resides within your app?

If that's the case, just simply iterate through your array and dump the elements to the file.
Try using KissXML to generate the XML as needed. If you need to parse the HTML have a look at Ben Reeves HTML Parser.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文