iphone - Viewing CSV attachment in MFMailComposeViewController -
I have an application that creates a CSV-file and then connects it to an email using MFmail Compute Weektranter is. All this works well.
My problem is that I want to add an option to view the contents of CSV before sending it. This functionality exists in the mail, where an attached CSV spreadsheet can be displayed. My question is, can I use this functionality to display a file, or do I have to resort to low level core graphics coding to generate a spreadsheet?
Have you tried to load a CSV file in UIWebView? You can not programmatically interact with the MFMailComposeViewController UI, so you have to try it before displaying the mail composition interface. But since UIWebView can display all supported file formats, maybe it also understands CSV.
Comments
Post a Comment