是否可以将电子表格数据传输到属性列表中?
我想将一些预加载的数据与 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从电子表格中以 XML 格式导出 2 列,然后以编程方式读取 XML 文件并使用 NSPropertyListSerialization 类对原始 XML 数据进行反序列化:
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:
有一个教程可以将你的预加载数据放入 plist 中。也许它会对你有所帮助。
此链接
There is a tutorial to get your preload data into plist.May be it will help you.
this link