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