renebigot / XlsxReaderWriter

XlsxReaderWriter is an Objective-C library for iPhone / iPad and Mac. It parses and writes MS Excel XLSX files.
MIT License
438 stars 121 forks source link

Extract data to xml or nsdictionnary #42

Closed KevinJue closed 8 years ago

KevinJue commented 8 years ago

Hello,

i'm seeing some function to get a NSDictionnary but it seem to be from xml so i try to find a solution in your work but ...

did i miss something ? a method to extract directly in NSDictionnary ? or a method to extract xlsx to XML ?

Cheers

renebigot commented 8 years ago

NSDictionary are used to read / write XML files. XLSX are not converted to NSDictionary

KevinJue commented 8 years ago

okay, so you're solution can't be used for that ty.

just to try, do you try to do this ? or know solution for that ?

renebigot commented 8 years ago

I haven't try since XLSX files are not just some value in a table. You have to deal with shared strings, styles, merged cells and many other things. You could generate some NSDictionary for your needs, but there's few chances that your needs match with someone else needs