I\'m building an iPhone app that has to download an Excel (.xls) file from a website and perform a string search of the spreadsheet data. I\'ve done this in C#, but I have
There is no innate ability to read Excel data into a Foundation container, like an NSArray
or NSDictionary
. You could, however, convert the file (with Excel) to a comma-separated-value (CSV) file and then parse each line's cells on the iPhone using the NSString
instance method -componentsSeparatedByString:
.