Reading of aquivo.xlsm (Excel) from my app

How do I read a .xlsm file (Excel spreadsheet) from my app?

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

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

Author: Gian, 2014-12-01

2 answers

There are two projects to work with Excel files in Objective-C.

Http://sourceforge.net/projects/libxls / and https://github.com/dhoerl/DHlibxls (Interface to the first)

 1
Author: Otávio, 2015-04-05 18:56:45

If possible, convert the xls file to csv. Excel itself does this. You can then use this library to read the file. https://github.com/davedelong/CHCSVParser

 0
Author: Rafael Leão, 2014-12-01 17:42:00