我正在使用MFMailComposeViewController
從應用內發送附件(pdf)。但是,當我在設備上進行測試時,我沒有收到附件。任何想法可能是什麼問題?未收到從iOS應用發送的附件/ MFMailComposeViewController
- (void) emailDocument
{
MFMailComposeViewController *mailController = [[MFMailComposeViewController alloc] init];
NSData *data = [[NSData alloc] initWithContentsOfURL:pdfURL];
mailController.mailComposeDelegate = self;
[mailController setSubject:[self title]];
[mailController setMessageBody:@"Please find the attached documents." isHTML:YES];
[mailController addAttachmentData:data mimeType:@"application/pdf" fileName:@"document"];
[self presentModalViewController:mailController animated:YES];
}
您確定pdfURL是設備上的有效網址嗎?請在您分配pdfURL ivar的地方添加代碼。 – 2012-01-10 05:01:36
良好的通話,我修好了,現在它工作。謝謝。 – 2012-01-10 08:48:37