2
내가 이메일을 보내도록하는 것입니다 노력하고 기본적으로 무엇을
중단 : 오류, 경고없이이 없습니다이메일 보내기 원인 - 연결이
-(void) sendAnEmail {
if ([MFMailComposeViewController canSendMail])
{
MFMailComposeViewController *mail = [[MFMailComposeViewController alloc] init];
mail.mailComposeDelegate = self;
[mail setSubject:@"Subject"];
[mail setMessageBody:@"Hey, check this out!" isHTML:NO];
[mail setToRecipients:@[@"[email protected]"]];
[self presentViewController:mail animated:YES completion:NULL];
}
else
{
NSLog(@"device cannot send email");
}
}
합니다. 출력이 무효 인 경우 :
BSXPCMessage이 메시지에 대한 오류가 발생했습니다 : 연결 내가이 문제를 해결하려면 어떻게
중단?
테스트 장치 - 5S (8.3) this Apple Guide에서
와
NO
교체를이 코드는 실제로라는지고 있습니까? – alexburtnikCIFilter를 사용하여 조작 할 수 있습니까? – alexburtnik
글쎄 첨부 파일이있는 이메일을 보내려고했는데 같은 문제가 발생하여 간단한 코드로 시도해 보았습니다. –