views:

94

answers:

1

Hi,

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

+1  A: 

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.

Jason Coco