Writing to PDF file programmatically

I am looking for a way to write text to PDF in my code. I started by loading the PDF to UIWebView and I am adding the UILabel to the UIScrollView UIWebView. Is this a good way to write in it? How can I save it with changes?

+3


source to share


1 answer


There is a built-in API for parsing PDF :

However, I'm not sure if it allows the changes to be saved. You might be interested in taking a look at this question:

how to edit PDF in objective-c?

edit / change PDF



Edit PDF in iphone app

Alos, look at the following libraries (they are commercial):

+2


source







All Articles