私のアプリケーションはを利用しておりUIView
、この図面を電子メールで送信したいと思います。これは可能ですか?
質問する
503 次
2 に答える
6
それを画像に変換し、その画像を添付ファイルとして郵送します。
+ (UIImage *) imageWithView:(UIView *)view
{
UIGraphicsBeginImageContextWithOptions(view.bounds.size, view.opaque, [[UIScreen mainScreen] scale]);
[view.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage * img = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
return img;
}
-(void)displayComposerSheet
{
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
[picker setSubject:@"Check out this image!"];
// Set up recipients
// NSArray *toRecipients = [NSArray arrayWithObject:@"first@example.com"];
// NSArray *ccRecipients = [NSArray arrayWithObjects:@"second@example.com", @"third@example.com", nil];
// NSArray *bccRecipients = [NSArray arrayWithObject:@"fourth@example.com"];
// [picker setToRecipients:toRecipients];
// [picker setCcRecipients:ccRecipients];
// [picker setBccRecipients:bccRecipients];
// Attach an image to the email
UIImage *coolImage = ...;
NSData *myData = UIImagePNGRepresentation(coolImage);
[picker addAttachmentData:myData mimeType:@"image/png" fileName:@"coolImage.png"];
// Fill out the email body text
NSString *emailBody = @"My cool image is attached";
[picker setMessageBody:emailBody isHTML:NO];
[self presentModalViewController:picker animated:YES];
[picker release];
}
于 2012-11-16T16:11:33.987 に答える
3
これは、画像に変換する場合にのみ実行できます。
画像に変換
最初にQuartzCoreフレームワークをリンクする必要があります。#import <QuartzCore/QuartzCore.h>
次にコードに挿入します:
UIGraphicsBeginImageContext(myView.bounds.size);
[myView.layer renderInContext:UIGraphicsGetCurrentContext()];
UIImage *viewImage = UIGraphicsGetImageFromCurrentImageContext();
UIGraphicsEndImageContext();
ソース: http: //iphonedevelopment.blogspot.com/2008/10/getting-contents-of-uiview-as-uiimage.html
メールで送信
MFMailComposeViewControllerクラスを使用できるため、アプリを離れる必要はありません。このチュートリアルは私を助けました:
画像を追加するには、同じクラスのメソッドaddAttachmentData:mimeType:fileName:を使用できます。これは3つのパラメーターを取ります。詳細については、アップルのドキュメントを確認してください。
于 2012-11-16T16:13:47.743 に答える