Reading .xlsm file (Excel) from my application

0

How do I read a .xlsm (Excel worksheet) file from my application?

Basically I need to get the data from this worksheet. Take the value of each of the cells it has.

Is there anything native for me to do this reading? Any library for indication? For example, it can be in Objective-C or Swift .

    
asked by anonymous 01.12.2014 / 17:54

2 answers

1

There are two projects for working with Excel files in Objective-C.

link and link > (Interface to the first)

    
05.04.2015 / 20:56
0

If possible, convert the xls file to csv. Excel itself does this. You can then use this library to read the file. link

    
01.12.2014 / 18:42