gpt4 book ai didi

ios7 - 使用 MFMailComposeViewController 在 iOS 7 中发送电子邮件时遇到问题

转载 作者:行者123 更新时间:2023-12-02 03:37:03 25 4
gpt4 key购买 nike

我有一个非常简单的应用程序来测试发送电子邮件,但电子邮件从未到达。我在应用程序中包含了 MessageUI 框架,并且还实现了 MFMailComposeViewControllerDelegate。 App中的两个方法如下:

- (IBAction)showEmail:(id)sender
{
// Email Subject
NSString *emailTitle = @"Test Email";
// Email Content
NSString *messageBody = @"iOS programming is so fun!";
// To address
NSArray *toRecipents = [NSArray arrayWithObject:@"email@address.com"];

MFMailComposeViewController *mc = [[MFMailComposeViewController alloc] init];
mc.mailComposeDelegate = self;
[mc setSubject:emailTitle];
[mc setMessageBody:messageBody isHTML:NO];
[mc setToRecipients:toRecipents];

// Present mail view controller on screen
[self presentViewController:mc animated:YES completion:NULL];

和委托(delegate)方法:

- (void) mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error
{
switch (result)
{
case MFMailComposeResultCancelled:
NSLog(@"Mail cancelled");
break;
case MFMailComposeResultSaved:
NSLog(@"Mail saved");
break;
case MFMailComposeResultSent:
NSLog(@"Mail sent");
break;
case MFMailComposeResultFailed:
NSLog(@"Mail sent failure: %@", [error localizedDescription]);
break;
default:
break;
}

// Close the Mail Interface
[self dismissViewControllerAnimated:YES completion:NULL];
}

当我在我的应用程序中按下电子邮件按钮时,第一种方法非常有效,当我单击显示的发送按钮时,“邮件已发送”消息出现在日志中。电子邮件永远不会到达。

除了电子邮件从未到达目的地之外,一切似乎都像宣传的那样有效。

我在 iPad 上而不是在模拟器中运行它,并且我有良好的网络连接。

我错过了什么?

最佳答案

显然这是 iPad 本身的电子邮件配置问题。重启设备后,上面的代码可以完美运行。我非常讨厌这种问题。

关于ios7 - 使用 MFMailComposeViewController 在 iOS 7 中发送电子邮件时遇到问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22734157/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com