Excel 文件导入 NSArray

发布于 2024-11-04 04:10:10 字数 116 浏览 0 评论 0原文

我有一个 Excel 文件,我需要将其数据用作表视图的源。如何将 .xls 转换为 plist 文件,以便将其解析为 NSArray? iWork 套件中的 Numbers 应用程序有此选项吗?

谢谢。

I have an Excel file whose data I need to use as a source for my table view. How can I convert the .xls into a plist file so I can parse it into NSArray? Does the Numbers app in iWork suite have this option?

Thanks.

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

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

发布评论

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

评论(2

∞梦里开花 2024-11-11 04:10:10

我过去使用的解决方案是将 .xls 导出为制表符分隔的文件,然后使用 python 脚本将其转换为 plist。这非常简单,但提供示例代码来做到这一点很困难,因为它非常针对特定问题。

The solution I’ve used in the past is to export the .xls as a tab-delimited file and then use e.g. a python script to convert from that to a plist. It’s pretty easy, though providing sample code to do it is difficult because it’s pretty problem-specific.

灯角 2024-11-11 04:10:10

如果您可以将其导出为 CSV 或 TSV 文件,则可以使用我的 CHCSVParser 来完成所有解析为你工作。

If you can export it as a CSV or TSV file, you can use my CHCSVParser to do all of the parsing work for you.

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