Guest User

Untitled

a guest
Mar 19th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. @IBOutlet weak var myPDFView: PDFView!
  2. @IBOutlet weak var myThumbNailView: PDFThumbnailView!
  3.  
  4. let pdfDoc = PDFDocument.init(url: pdfFilePath)
  5. self.myPDFView.document = pdfDoc
  6. self.myPDFView.autoScales = true
  7.  
  8. myThumbNailView.pdfView = myPDFView
  9. myThumbNailView.thumbnailSize = CGSize.init(width:
  10. thumbNailDimension, height: 60)
Add Comment
Please, Sign In to add comment