MFMailComposeViewController
을 사용하여 앱 내에서 첨부 파일 (pdfs)을 보냅니다. 그러나 장치에서 테스트 할 때 첨부 파일을받지 못합니다. 어떤 아이디어가 문제 일 수 있습니까?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이 (가) 기기의 유효한 URL입니까? pdfURL ivar을 할당하는 코드를 추가하십시오. –
좋은 전화, 나는 그것을 고쳤고 지금 그것은 작동한다. 감사. –