Skip to content

Instantly share code, notes, and snippets.

@urouro
Created December 20, 2013 08:37
Show Gist options
  • Save urouro/8051984 to your computer and use it in GitHub Desktop.
Save urouro/8051984 to your computer and use it in GitHub Desktop.
ios mail
// .h
// #import <MessageUI/MessageUI.h>
// #import <MessageUI/MFMailComposeViewController.h>
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
//タイトル
[picker setSubject:title];
//本文
[picker setMessageBody:body isHTML:YES];
[self presentModalViewController:picker animated:YES];
[picker release];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment