I am creating a csv file with the following code:

BOOL written = [csvString writeToFile:@"stock_summary.csv" atomically:YES encoding:NSUTF8StringEncoding error:&error];
if (!written)
    NSLog(@"write failed, error=%@", error);

Now i want to send this file as an attachment in the email. I can see my created file but i want to access this file. I know how to attach a file, i just want to access it.

link|improve this question

feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.