`
xiaojunhu
  • 浏览: 30172 次
  • 性别: Icon_minigender_1
  • 来自: 上海
最近访客 更多访客>>
社区版块
存档分类
最新评论

ios 发邮件

阅读更多

1.新建立一个项目,view based application(with storyboard.ARC)

2.需要引入UIMessage Library ,如下图

 

添加library

 

3.编辑ViewController.h文件

如下

 

#import <UIKit/UIKit.h>
#import <MessageUI/MessageUI.h>
@interface ViewController : UIViewController <MFMailComposeViewControllerDelegate>

-(IBAction)sendMail:(id)sender;
@end

4.在ViewController.m文件中添加如下方法

 

-(IBAction)sendMail:(id)sender
{
if ([MFMailComposeViewController canSendMail]) {
MFMailComposeViewController *mail = [[MFMailComposeViewController alloc] init];
mail.mailComposeDelegate = self;
[mail setSubject:@"Apple , Welcome to china."];
NSArray *toRecipients = [NSArray arrayWithObjects:@"bu.xianggang@gmail.com", nil];
[mail setToRecipients:toRecipients];
[mail setCcRecipients:toRecipients];

NSString *emailBody = @”hello apple”;

[mail setMessageBody:emailBody isHTML:NO];
mail.modalPresentationStyle = UIModalPresentationFormSheet;
[self presentModalViewController:mail animated:YES];
} else {
UIAlertView *alert = [[UIAlertView alloc] initWithTitle:@”ERROR” message:@”Email is not supported on your device” delegate:self cancelButtonTitle:@”Cancel” otherButtonTitles: nil];
[alert show];
}
}
-(void)mailComposeController:(MFMailComposeViewController *)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError *)error
{
switch (result) {
case MFMailComposeResultCancelled:
NSLog(@”Cancelled”);
break;
case MFMailComposeResultSaved:
NSLog(@”Message saved in drafts folder”);
break;

case MFMailComposeResultSent:
NSLog(@”Message is sent”);
break;

case MFMailComposeResultFailed:
NSLog(@”Message not sent due to error”);
break;
default:
NSLog(@”Mail not sent”);
break;
}
[self dismissModalViewControllerAnimated:YES];
}

OK,大功搞成.

分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics