Ios - creating a PDF populated from CoreData

I have an application with Core Data, and I would like to transfer its contents to a PDF file so that the end user can print it and send it by mail.

  • What steps should I take? How do I need to convert or can it be converted directly?

  • I would like to set the layout of the PDF file, so I'm not sure if this touches on question 1.

+3
source share
1 answer

PDF output is not particularly complicated - in general, it is no more complicated than compiling a traditional presentation.

UIKit provides the high-level API documented here .

CoreGraphics PDF. .

+4

All Articles