pdfView pinch zooming out
Asked Answered
D

5

13

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.

Dipody answered 13/11, 2017 at 18:8 Comment(2)
to answer my own question, it was actually very easy... pdfView.autoScales = true pdfView.maxScaleFactor = 4.0 pdfView.minScaleFactor = pdfView.scaleFactorForSizeToFitDipody
Kindly add your comment as your answer , as this might be helpful to others too.Mountfort
L
23

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 
Lorgnon answered 13/5, 2018 at 20:2 Comment(1)
I just want to say that I love you. I was wasting so much time with this! Thanks for the help.Fusain
D
10

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

pdfView.autoScales = true 
pdfView.maxScaleFactor = 4.0 
pdfView.minScaleFactor = pdfView.scaleFactorForSizeToFit
Dipody answered 23/11, 2017 at 22:8 Comment(1)
I would like to add that this only worked for me after I set the document on the pdfView. If one sets the document after making those adjustments it does not have any effect.Tiller
T
1

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
        }
    }
}
Tiller answered 3/4, 2018 at 16:26 Comment(1)
Actually, since iOS 9.0 it is not necessary to remove observer from Notification Center. documentationMathur
T
1

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
    }
Trabue answered 30/3, 2022 at 10:24 Comment(0)
L
0

If overriding PDFView's method is restricted, it can be done with adding an observer;

NotificationCenter.default.addObserver(self, selector: #selector(scaleChanged), name: NSNotification.Name.PDFViewScaleChanged, object: nil)

and using it like:

@objc func scaleChanged() {
    self.pdfView.maxScaleFactor = 3.0
    self.pdfView.minScaleFactor = self.pdfView.scaleFactorForSizeToFit
}
Lionel answered 6/1, 2020 at 12:39 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.