Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

pdfView pinch zooming out

I am trying to move my project that was using a webview to display some pdf to a pdfView to take advantage of the latest PDFKit features.

in the webview when pinching to zoom out the document was always scaling to fill the screen. basically you could not zoom out the page it was bouncing back to fill the screen.

Now with a pdfView, I can zoom out by pinching and it does not look good at all there is no need to have the pdf page to be smaller than the screen...

Is there any way to activate the autoscale once you release your fingers from the screen. I know there is the gesture func but I am not familiar with its use.

like image 882
Julien7377 Avatar asked Nov 13 '17 18:11

Julien7377


4 Answers

Just to confirm that the accepted answer is the correct one, but also to highlight where the code needs to be used (as stated in the comment by answer author). i.e. the code must be used AFTER setting the pdf document:

pdfView.document = pdfDocument
pdfView.autoScales = true
pdfView.maxScaleFactor = 4.0
pdfView.minScaleFactor = pdfView.scaleFactorForSizeToFit 
like image 98
Nicholas Farmer Avatar answered Oct 22 '22 04:10

Nicholas Farmer


This solution will automatically adjust the PDFView once you set the document property. Just use NoZoomOutPDFView instead of PDFView as your view for displaying a PDFDocument.

import Foundation
import PDFKit

final class NoZoomOutPDFView: PDFView {

    init() {
        super.init(frame: .zero)
        NotificationCenter
            .default
            .addObserver(
                self,
                selector: #selector(update),
                name: .PDFViewDocumentChanged,
                object: nil
            )
    }

    deinit {
        // If your app targets iOS 9.0 and later the following line can be omitted
        NotificationCenter.default.removeObserver(self)
    }

    required init?(coder aDecoder: NSCoder) {
        fatalError("init(coder:) has not been implemented")
    }

    @objc private func update() {
        // PDF can be zoomed in but not zoomed out
        DispatchQueue.main.async {
            self.autoScales = true
            self.maxScaleFactor = 4.0
            self.minScaleFactor = self.scaleFactorForSizeToFit
        }
    }
}
like image 33
christopher.online Avatar answered Oct 22 '22 04:10

christopher.online


to answer my own question, it was actually very easy...

pdfView.autoScales = true 
pdfView.maxScaleFactor = 4.0 
pdfView.minScaleFactor = pdfView.scaleFactorForSizeToFit
like image 10
Julien7377 Avatar answered Oct 22 '22 06:10

Julien7377


I had the same problem and the accepted answer did not work for me. scaleFactorForSizeToFit always returned 0.0, and therefore I was still able to zoom out until nothing was visible anymore. I don't know if this is specific to my application or something changed in iOS, but I had to trigger a layout update on the PDFView before setting the scale factor. This is how it works for me on iOS15:

   if let document = PDFDocument(url: URL(string: "https://www.adobe.com/pdf/pdfs/ISO32000-1PublicPatentLicense.pdf")!) {
        pdfView.displayDirection = .vertical
        pdfView.autoScales = true
        pdfView.document = document
        pdfView.setNeedsLayout()
        pdfView.layoutIfNeeded()
        pdfView.minScaleFactor = pdfView.scaleFactorForSizeToFit
        pdfView.maxScaleFactor = 4.0
    }
like image 1
Apfelsaft Avatar answered Oct 22 '22 05:10

Apfelsaft