是否可以将电子表格数据传输到属性列表中?

发布于 2024-12-23 03:14:32 字数 92 浏览 2 评论 0原文

我想将一些预加载的数据与 iOS 应用程序捆绑在一起。我有一些原始数据,但已在电子表格中进行编辑。有没有办法将这些数据转换为属性列表(.plist)格式,而无需手动输入?

I want to bundle some pre-loaded data with an iOS app. I have some raw data but that's edited in the spreadsheet. Is there any way to transfer this data into property list (.plist) format without manually inputting it?

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

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

发布评论

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

评论(2

╰◇生如夏花灿烂 2024-12-30 03:14:32

从电子表格中以 XML 格式导出 2 列,然后以编程方式读取 XML 文件并使用 NSPropertyListSerialization 类对原始 XML 数据进行反序列化:

NSData *pListDataAsXML = [NSData dataWithContentsOfFile:@"xmlFileName.xml"];
id pListData = (id)[NSPropertyListSerialization propertyListFromData:pListDataAsXML
                                                    mutabilityOption:NSPropertyListImmutable
                                                              format:NSPropertyListXMLFormat_v1_0
                                                    errorDescription:nil];

Export 2 columns from the spreadsheet in XML format, then programatically read the XML file and use the NSPropertyListSerialization class to de-serialize the raw XML data:

NSData *pListDataAsXML = [NSData dataWithContentsOfFile:@"xmlFileName.xml"];
id pListData = (id)[NSPropertyListSerialization propertyListFromData:pListDataAsXML
                                                    mutabilityOption:NSPropertyListImmutable
                                                              format:NSPropertyListXMLFormat_v1_0
                                                    errorDescription:nil];
软甜啾 2024-12-30 03:14:32

有一个教程可以将你的预加载数据放入 plist 中。也许它会对你有所帮助。

此链接

There is a tutorial to get your preload data into plist.May be it will help you.

this link

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