本地文件系统中的 PDF 文件/URL
嘿!
我在我的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要发送作为应用程序中的资源包含的 pdf 文件:
要发送您在应用程序中生成的 pdf 文件:
有关临时目录的详细讨论,请阅读以下内容:
http://cocoawithlove.com/2009/07/temporary -files-and-folders-in-cocoa.html
但简而言之:
用于创建 PDFContext 的路径应该位于文档目录或临时目录中,具体取决于您希望文件保留的时间。 “filename.pdf”不是用于创建 pdf 上下文的有效路径。
To send a pdf file that is included as a resource in your app:
To send a pdf file that you've GENERATED in your app:
For a detailed discussion of temp directories, read this:
http://cocoawithlove.com/2009/07/temporary-files-and-folders-in-cocoa.html
But in short:
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.