0

나는 이메일이 전송되는MFMailComposeViewContoller를 사용하여 pdf로 이메일을 보내는 방법은 무엇입니까?

MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init]; 

NSArray *recipients = @[@"[email protected]"]; 

// Attach an image to the email 
NSString *path = [[NSBundle mainBundle] pathForResource:@"FlashCards" ofType:@"pdf"]; 
NSData *myData = [NSData dataWithContentsOfFile:path]; 
[picker addAttachmentData:myData mimeType:@"application/pdf" fileName:@"FlashCards"]; 
[picker setSubject:@"Flashcards"]; 
[picker setToRecipients:recipients]; 
[picker setMessageBody:@"Hello" isHTML:NO]; 
[picker setMailComposeDelegate:self]; 
[self presentViewController:picker animated:YES completion:nil]; 
[self dismissViewControllerAnimated:YES completion:nil]; 

FlashCards.pdf라는 pdf 파일이 있고이 모든 것이 작동 것 같다,하지만이 PDF 파일을 전송 아닙니다.

편집 :

이 실제로 내 코드의 다른 부분에서 다른 문제가 있었다, 작동합니다. 내 문제가 해결되었습니다.

MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init]; 
NSArray *recipients = @[@"[email protected]"]; 
NSString *path = [[NSBundle mainBundle] pathForResource:@"FlashCards" ofType:@"pdf"]; 
NSData *myData = [NSData dataWithContentsOfFile:path]; 
[picker addAttachmentData:myData mimeType:@"application/pdf" fileName:@"FlashCards.pdf"]; 
[picker setSubject:@"Flashcards"]; 
[picker setToRecipients:recipients]; 
[picker setMessageBody:@"Hello" isHTML:NO]; 
[picker setMailComposeDelegate:self]; 
[self presentViewController:picker animated:YES completion:nil]; 
+0

'myData'가'nil'이 아닌지 확인하십시오. – rmaddy

+0

왜'presentViewController'를 호출 한 후에'dismissViewController'를 호출합니까? 그건 말이 안돼. – rmaddy

+0

MFMailComposeViewController는 Apple의 Xcode 내부에 있습니다. 누구나 사용할 수 있습니다. 작곡가는 사용자가 작업을 마친 후에 해고됩니다. myData는 무효가 아닙니다. (NSObject) NSObject = { isa = NSConcreteData } – iOSAaronDavid

답변

0

사용 MIME 타입 대신 application/pdftext/x-pdf : 나는 또한 확장 대신 파일 이름으로 플래시 카드를 가진 올바른이라고 확인했다,이 내가 작업 한 정확한 코드 FlashCards.pdf해야합니다. 또한 크기/길이가 myData인지 확인하여 PDF가로드되었는지 확인하십시오.

+2

'application/pdf '를 사용하는 것이 정확합니다. – rmaddy