iOS发送电子邮件


我们可以使用iOS设备的电子邮件应用程序发送电子邮件。

涉及的步骤

第1步 - 创建一个简单的 基于View的应用程序

步骤2 - 选择项目文件,然后选择目标,然后添加 MessageUI.framework

第3步 - 在 ViewController.xib中 添加一个按钮,并创建一个发送电子邮件的操作。

第4步 - 更新 ViewController.h 如下 -

#import <UIKit/UIKit.h>
#import <MessageUI/MessageUI.h>

@interface ViewController : UIViewController<MFMailComposeViewControllerDelegate> {
   MFMailComposeViewController *mailComposer;
}

-(IBAction)sendMail:(id)sender;

@end

第5步 - 更新 ViewController.m 如下

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController

- (void)viewDidLoad {
   [super viewDidLoad];
}

- (void)didReceiveMemoryWarning {
   [super didReceiveMemoryWarning];
   // Dispose of any resources that can be recreated.
}

-(void)sendMail:(id)sender {
   mailComposer = [[MFMailComposeViewController alloc]init];
   mailComposer.mailComposeDelegate = self;
   [mailComposer setSubject:@"Test mail"];
   [mailComposer setMessageBody:@"Testing message
   for the test mail" isHTML:NO];
   [self presentModalViewController:mailComposer animated:YES];
}

#pragma mark - mail compose delegate
-(void)mailComposeController:(MFMailComposeViewController *)controller
 didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error{
   if (result) {
      NSLog(@"Result : %d",result);
   }

   if (error) {
      NSLog(@"Error : %@",error);
   }

   [self dismissModalViewControllerAnimated:YES];
}
@end

输出

当我们运行应用程序时,我们将获得以下输出

iOS教程

点击发送电子邮件,我们将获得以下输出

iOS教程