Reputation: 39354
I would like to create an iPhone application:
1 - I need to have a form for the user to insert data (Text);
2 - The data needs to be saved so I can edit, view or delete a record.
3 - I need to export the data to excel ...
What is the best way to save data so it is persistent?
Is it possible to export it to Excel format?
Thank You, Miguel
Upvotes: 0
Views: 71
Reputation: 89509
You can easily save your file in CSV (comma separated value) format, which Excel knows how to easily import.
And as for "where to save it", you can use a number of different iPhone API's (e.g. you can "writeToFile:
" into the documents directory, or save the file to iCloud, or can persist your data in a Core-Data database, or e-mail the document to yourself or somebody else at the end). These are all implementation details that depend on what you want your application to look like.
Upvotes: 2