我正在尝试使用 MFMailComposeViewController 发送已添加到项目中的图像。
我在模拟器中尝试过,效果很好,我还可以在文本字段中看到图像,但是当我尝试发送邮件时,我在控制台上收到以下错误:
2 月 10 日 16:22:02 markuss-macbook-pro.speedport.ip RMC Konus[1825]:CGImageCreate:无效图像大小:0 x 0。
我的代码:
//Get the Image
UIImage *image = [UIImage imageNamed:@"image.png"];
NSData *imageData = UIImagePNGRepresentation(image);
//Create the Mail View
MFMailComposeViewController *mailCV = [[MFMailComposeViewController alloc] init];
[mailCV setMailComposeDelegate:self];
[mailCV addAttachmentData:imageData mimeType:@"image/png" fileName:@"exGraphic.png"];
//Show the View Controller
[self presentViewController:mailCV animated:YES completion:nil];