本地文件系统中的 PDF 文件/URL

发布于 2024-10-04 17:33:13 字数 171 浏览 1 评论 0原文

嘿!

我在我的 iPhone 应用程序上生成了一个 PDF 文件。 现在我想通过电子邮件发送它 - 我使用 MailViewController 并必须添加我的附件,但现在的问题...

当我只在 PDFContext 中写入 filename.pdf 时,我应该写入哪个 URL?

Hy!

I had generate a PDF File on my iPhone App.
Now I want to send it via EMail - i use the MailViewController and have to add my attachment, but now the question...

Whick URL should I write when I only written the filename.pdf at the PDFContext?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

埋情葬爱 2024-10-11 17:33:13

要发送作为应用程序中的资源包含的 pdf 文件:

NSString *path = [[NSBundle mainBundle] pathForResource:@"filename" ofType:@"pdf"];

要发送您在应用程序中生成的 pdf 文件:

  1. 写入磁盘。
  2. 使用该路径将其附加到电子邮件中。

有关临时目录的详细讨论,请阅读以下内容:
http://cocoawithlove.com/2009/07/temporary -files-and-folders-in-cocoa.html
但简而言之:

NSString *filePath = [NSTemporaryDirectory() stringByAppendingPathComponent:@"filename.pdf"];
if ([fileData writeToFile:filePath atomically:YES]) {
    NSLog(@"success!");
} else {
    NSLog(@"fail");
}

用于创建 PDFContext 的路径应该位于文档目录或临时目录中,具体取决于您希望文件保留的时间。 “filename.pdf”不是用于创建 pdf 上下文的有效路径。

To send a pdf file that is included as a resource in your app:

NSString *path = [[NSBundle mainBundle] pathForResource:@"filename" ofType:@"pdf"];

To send a pdf file that you've GENERATED in your app:

  1. write to disk.
  2. use the path to attach it to the email.

For a detailed discussion of temp directories, read this:
http://cocoawithlove.com/2009/07/temporary-files-and-folders-in-cocoa.html
But in short:

NSString *filePath = [NSTemporaryDirectory() stringByAppendingPathComponent:@"filename.pdf"];
if ([fileData writeToFile:filePath atomically:YES]) {
    NSLog(@"success!");
} else {
    NSLog(@"fail");
}

the path you use to create a PDFContext should be in either the documents directory, or the temp directory, depending on how long you want the file to persist. "filename.pdf" is not a valid path to be creating a pdf context with.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文