I have added MFMailComposeViewController to my application. In the MFMailComposeViewController there is a button at the top of left side name Cancel.When i click the cancel button it shows an UIActionSheet with three option (save/delete/cancel).
My doubt is when i click the delete draft button it cancel the MFMailComposeViewController.The same process is for save draft button.But i dont know what function it does, when i click the cancel,save,delete (draft) What it will do and how can we check this ?(Whether is correct or not).
And also where can i view the saved draft mails in iphone.Is this possible ?If we can able to delete some option from UIActionSheet.
- (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error
{
[self dismissModalViewControllerAnimated:YES];
}
I searched lot about this but didnt get an answer.I am running with iphone os 4.0 simulator.
Plz help me ?
Thanks in advance....