I have app that exports data in CSV. Recently I added "Open In..." feature for opening .csv files in other apps. I would like to be able to have Numbers (on iPad) open exported files as well.

Trawling through Numbers's Info.plist, I saw that it supports four document types:

  1. com.apple.iWork.Numbers.sffnumbers
  2. com.apple.iWork.Numbers.numbers
  3. com.microsoft.excel.xls
  4. org.openxmlformats.spreadsheetml.sheet

So, I am wondering if anyone knows where I can find specifications for one or more of these file formats or and example spreadsheet or code that would do the job. I have googled a fair bit - and I assume that formats 1-3 are proprietary. I am not sure about #4 and have found bits and pieces, but it isn't clear to me how they would fit together to constitute a readable document.

link|improve this question

74% accept rate
Turns out that Numbers added support for importing comma separated values with recent update. – westsider Oct 28 '10 at 19:30
feedback

1 Answer

up vote 1 down vote accepted

Format 4 is the OOXML spreadsheet format. You may be able to find the references you need at the Wikipedia page.

link|improve this answer
Thanks. While I was hoping for a bit more (you know, actual spec. or source code), this was really helpful. I hadn't realized that .xlsx was yet another ZLib-compressed archive with a whole lot of source .xml files and such. A lot to ponder - like how little of this is enough? Thanks! – westsider Oct 28 '10 at 5:14
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.