Toby
Toby

Reputation: 390

How to export data to an excel file w/chart on iPhone?

I have some data in a sqlite database in my app, and my client wants an option that allows you to email it as an excel file which includes a chart of the data. Is this possible on an iPhone?

Have a good one,

Toby

Upvotes: 0

Views: 1537

Answers (1)

Jason Coco
Jason Coco

Reputation: 78393

Sure, just take the data from your database and generate and excel file with it, formatted as your requirements. Then simply send the file you created using MFMailComposeViewController.

The specification for an XLS file can be found here.

Upvotes: 1

Related Questions