How to open pdf file using UIView in iOS

How to open or display a PDF file without using UIWebView . I need to use UIView for horizontal scroll for a PDF view.

+4
source share
3 answers

If you do not want to use UIWebView, your alternative is to use the QLPreviewController to display the PDF file.

You can also use the UIDocumentInteractionController

Mark the sample from apple , i.e. docInteraction for more help.

+2
source

Check out the OpenSource Reader project on GitHub.

+2
source

See the CGPDFDocument and its associated APIs. That should make you go.

+1
source

Source: https://habr.com/ru/post/1435425/


All Articles