我创建了用于拍摄照片的自定义相册。我在我的应用程序中调用了这张专辑。单击按钮后,将调用相册。但我无法将此图像分享给邮件。我是用来MFMailComposeViewController
送的。
代码:
photopick= [UIButton buttonWithType:UIButtonTypeCustom];
[photopick setImage:[UIImage imageNamed:@"photo.png"] forState:UIControlStateNormal];
// [overlayButton setFrame:CGRectMake(80, 420, 60, 30)];
[photopick setFrame:CGRectMake(10, 10, 80, 50)];
[photopick addTarget:self action:@selector(showAlbum:) forControlEvents:UIControlEventTouchUpInside];
[[self view] addSubview:photopick];
-(void)showAlbum:(id)sender{
imagePicker=[[UIImagePickerController alloc]init];
imagePicker.delegate = self;
imagePicker.allowsEditing =NO;
imagePicker.sourceType = UIImagePickerControllerSourceTypePhotoLibrary;
// imagePicker.sourceType=UIImagePickerControllerSourceTypeSavedPhotosAlbum;
[self presentModalViewController:imagePicker animated:YES];
}
-(void)imagePickerControllerDidCancel:(UIImagePickerController *)picker{
//release picker
[picker dismissModalViewControllerAnimated:YES];
}
-(void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary *)info{
//set image
[self.navigationController.navigationBar setHidden:NO];
// newImage = [[UIImageView alloc] initWithImage:[info objectForKey:UIImagePickerControllerOriginalImage]];
newImage = [[UIImageView alloc] initWithImage:[info objectForKey:UIImagePickerControllerOriginalImage]];
[newImage setFrame:CGRectMake(0, 0, 320, 568)];
// [newImage setUserInteractionEnabled:YES];
[self.view addSubview:newImage];
// [newImage release];
[picker dismissModalViewControllerAnimated:YES];
}
选择图像后,我还有其他按钮可以将 newImage(专辑图像)发送到邮件:
-(void)send:(id)sender{
MFMailComposeViewController *picker = [[MFMailComposeViewController alloc] init];
picker.mailComposeDelegate = self;
[picker setSubject:@"My image"];
UIImage *roboPic = [UIImage imageNamed:@"RobotWithPencil.jpg"];
NSData *imageData = UIImageJPEGRepresentation(roboPic, 1);
[picker addAttachmentData:imageData mimeType:@"image/jpg" fileName:@"RobotWithPencil.jpg"];
NSString *emailBody = @"This is a cool image of a robot I found. Check it out!";
[picker setMessageBody:emailBody isHTML:YES];
[self presentModalViewController:picker animated:YES];
}
但是我怎样才能将相册图像设置为 inside MFMailComposeViewController
。提到的一些文档在[UIImage imageNamed:@"img.png"];
这里我没有 imageName。我有相册中的图片