나는 이메일이 전송되는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];
'myData'가'nil'이 아닌지 확인하십시오. – rmaddy
왜'presentViewController'를 호출 한 후에'dismissViewController'를 호출합니까? 그건 말이 안돼. – rmaddy
MFMailComposeViewController는 Apple의 Xcode 내부에 있습니다. 누구나 사용할 수 있습니다. 작곡가는 사용자가 작업을 마친 후에 해고됩니다. myData는 무효가 아닙니다. (NSObject) NSObject = { isa = NSConcreteData } – iOSAaronDavid