CGPDF文档和本地数据
我在核心数据数据库中有一些 NSData (它是 pdf 数据),我想用 CGPDFDocument 打印我的 pdf。 我必须使用数据的 url,但我不知道如何使用本地数据(在我的核心数据数据库中)进行此操作。 有人有主意吗? :)
谢谢 !
I have some NSData in Core Data db (it's pdf data) and I would like to print my pdf with CGPDFDocument.
I have to use url of the data but I don't know how to make this with a local data (in my Core Data db).
Someone has an idea ? :)
Thanks !
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您使用的是 macOS,请使用 -[PDFDocument initWithData:]。
如果您使用的是 iOS,请使用 CGPDFDocumentCreateWithProvider 与 CGDataProviderRef。
此外,这是 来自 NSData 的 CGPDFDocumentRef 的副本。
If you are on macOS, use -[PDFDocument initWithData:].
If you are on iOS, use CGPDFDocumentCreateWithProvider with a CGDataProviderRef.
Also, this is a duplicate of CGPDFDocumentRef from NSData.