MehdiH
MehdiH

Reputation: 31

Swift - Edit PDF QuickLook

I would like to edit a PDF and save it in an IOS app. Is it possible to do this with the QuickLookController?

Does any one know how can I do this?

Upvotes: 1

Views: 1326

Answers (2)

Gabriel
Gabriel

Reputation: 171

I used to custom PDF trough iOS App, and I advise you to use PDFKit. It's easy and fast to use it!

With PDFKit you can edit a PDF and save it in an IOS app with HTML/CSS!

Upvotes: 0

Prashant
Prashant

Reputation: 336

Apple's QuickLook Framework documentation does mention that

A QLPreviewController object, or Quick Look preview controller, provides a specialized view for previewing an item.

So, I believe it is a framework meant only for previewing documents. The functions listed do not edit PDF data.

Here are some third-party libraries/frameworks that you may find useful.

Another page that may help you.

Upvotes: 1

Related Questions