xlsx database ios

我们两清 提交于 2019-12-11 23:39:08

问题


I'm writing an iphone application that pulls xlsx file from the server, manipulates with it (reading and writing to it) and upload it to the server. So I need to convert it to plist format, do some operations with plist and convert plist back to xlsx and upload it to server. How the convertion xlsx->plist and plist->xlsx could be done on ios?


回答1:


Here's what you will need to achieve your task:

Note: You must do the heavy lifting

To parse an xlsx, you will need to understand the Open XML file formats: Link

To parse a plist, you will need to understand the Property List file format: Link

To parse, I recommend using the NSXMLParser: Link



来源:https://stackoverflow.com/questions/8746662/xlsx-database-ios

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!