I’m creating an iPhone app which is going to have an online spreadsheet to download information from, problem is i have no idea how to do this. I’m not sure how many rows there will be, but there will be 6 columns. How do I access information from this spreadsheet?
Links to tutorials would be nice
Your best bet is to make some sort of API call on the server to output the spreadsheet in
CSVformat, then use aCSVparser on the device once you fetch the data. A Google search turn up several solutions for a parser.