gpt4 book ai didi

ios - 第一次运行 MFMailCompose 时,保存到文档目录的 PDF 永远不会附加(数据为零),但每隔一次

转载 作者:行者123 更新时间:2023-11-29 03:04:42 24 4
gpt4 key购买 nike

我遇到了一个似乎很常见的问题,到目前为止,还没有 Stack Overflow 的回答能帮助解决这个问题。

我有一个简单的功能,可以使用 MFMailComposeViewController 通过电子邮件发送附在我的应用程序中的电子邮件的 PDF。 PDF 填充了来自 Event Core Data 的数据。因此,用户填写了一些信息,UITableView 由独特的事件组成。用户选择一个事件,电子邮件按钮出现在 NavigationBar 中,允许他们发送该事件的电子邮件,并将事件信息附加到 PDF。

这是我的代码:

- (IBAction)savePDFAndEmail:(id)sender
{
pageSize = CGSizeMake(612, 792);
NSString *string = self.occasion.title;
NSString *fileName = [NSString stringWithFormat:@"%@.pdf", resultString];
NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
NSString *documentsDirectory = [paths objectAtIndex:0];
NSString *pdfFileName = [documentsDirectory stringByAppendingPathComponent:fileName];

// NSMutableData *data = [NSMutableData dataWithContentsOfFile:pdfFileName];
NSData *data=[NSData dataWithContentsOfFile:pdfFileName];
[self createPDF:pdfFileName];

NSLog(@"Data is %@", data);

if ([MFMailComposeViewController canSendMail])
{
MFMailComposeViewController *mailer = [[MFMailComposeViewController alloc] init];

mailer.mailComposeDelegate = self;
[mailer setSubject:@"An email"];
[mailer addAttachmentData:data mimeType:@"application/pdf" fileName:fileName];

NSString *emailBody = @"Please find attached PDF";
[mailer setMessageBody:emailBody isHTML:NO];

[self presentViewController:mailer animated:YES completion:^{
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent];

}];
}

}

更新:createPDF 方法是:

- (void)createPDF:(NSString *)fileName
{
CGContextRef pdfContext;
CFStringRef path;
CFURLRef url;
CGSize textSize = CGSizeMake(pageSize.width - 5*kBorderInset-5*kMarginInset, pageSize.height - 5*kBorderInset - 5*kMarginInset);
CGRect pageRect = CGRectMake(kBorderInset + kMarginInset, kBorderInset + kMarginInset + 50.0, pageSize.width - 2*kBorderInset - 2*kMarginInset, textSize.height);
CFMutableDictionaryRef myDictionary = NULL;
const char *filename = [fileName UTF8String];

// Create a CFString from the filename we provide to this method when we call it
path = CFStringCreateWithCString (NULL, filename,
kCFStringEncodingUTF8);
// Create a CFURL using the CFString we just defined
url = CFURLCreateWithFileSystemPath (NULL, path,
kCFURLPOSIXPathStyle, 0);
//CFRelease (path);
// This dictionary contains extra options mostly for 'signing' the PDF
myDictionary = CFDictionaryCreateMutable(NULL, 0,
&kCFTypeDictionaryKeyCallBacks,
&kCFTypeDictionaryValueCallBacks);
CFDictionarySetValue(myDictionary, kCGPDFContextTitle, (__bridge_retained CFStringRef)fileName);
CFDictionarySetValue(myDictionary, kCGPDFContextCreator, (__bridge_retained CFStringRef)fileName);

// Create our PDF Context with the CFURL, the CGRect we provide, and the above defined dictionary
pdfContext = CGPDFContextCreateWithURL (url, &pageRect, myDictionary);
...

它从 Core Data 获取信息以填充 PDF。

这是非常标准的代码。我即时创建 PDF 并将其附加到此电子邮件,就像 Stack Overflow 上的所有其他相关问题(有数百个)一样,PDF 在我创建时“附加”到电子邮件。但是当我发送电子邮件时,没有附件 pdf。在我的邮件已发送项目中,有电子邮件但没有附件 PDF。如果我返回应用程序并再次发送相同的 pdf,那么当我收到第二封电子邮件时,它包含 PDF。

数据的 NSLog 显示了一切。

创建新事件时,NSLog 为“Null”。如果我继续发送电子邮件并返回同一事件,则数据现在由一系列数字(非空)组成。

我放置了一些断点并对其进行了跟踪,确实如此,数据为空,但第一次也没有附加文件路径。

您甚至不必发送电子邮件;您可以简单地激活 MFMailComposeViewController 并删除现有草稿(通过按取消),然后再次打开它,现在数据不为空。这显然是糟糕的用户界面。

问题

问题很简单,PDF 从未附加到电子邮件(数据为空),这是用户第一次为所选事件发送 PDF。它每隔一段时间出现一次。

如果对此有任何想法,我们将不胜感激。

最佳答案

从逻辑上讲,您应该创建 pdf,然后读取数据并附加到邮件。但是在代码中我看到了不同的

您能否交换这两行并尝试:

[self createPDF:pdfFileName];
NSData *data=[NSData dataWithContentsOfFile:pdfFileName];

首先创建pdf,然后将其读取到NSData

关于ios - 第一次运行 MFMailCompose 时,保存到文档目录的 PDF 永远不会附加(数据为零),但每隔一次,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22915618/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com