【发布时间】:2014-01-22 16:25:08
【问题描述】:
我想通过从图像选择器中选择一个文件(图像)作为附件邮寄。 在 iOS Objective-C 中附加和邮寄文件(特别是图像)的适当方式是什么?
【问题讨论】:
-
这个链接回答了这个问题:stackoverflow.com/a/4302449/1886229
标签: ios objective-c cocoa-touch
我想通过从图像选择器中选择一个文件(图像)作为附件邮寄。 在 iOS Objective-C 中附加和邮寄文件(特别是图像)的适当方式是什么?
【问题讨论】:
标签: ios objective-c cocoa-touch
使用下面的方法
-(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];
}
并实现委托方法
- (void)mailComposeController:(MFMailComposeViewController*)controller didFinishWithResult:(MFMailComposeResult)result error:(NSError*)error
{
// Notifies users about errors associated with the interface
switch (result)
{
case MFMailComposeResultCancelled:
NSLog(@"Result: canceled");
break;
case MFMailComposeResultSaved:
NSLog(@"Result: saved");
break;
case MFMailComposeResultSent:
NSLog(@"Result: sent");
break;
case MFMailComposeResultFailed:
NSLog(@"Result: failed");
break;
default:
NSLog(@"Result: not sent");
break;
}
[self dismissModalViewControllerAnimated:YES];
}
在你的接口文件中
#import <MessageUI/MFMailComposeViewController.h>
...
@interface ... : ... <MFMailComposeViewControllerDelegate>
【讨论】: