アップル社はPDFを表示するためのPDFKitをリリースし、PDF対応が便利になりましたが、その活用方法について説明します。
まずは
import PDFKit
PDFの表示は
document = PDFDocument(url: destinationUrl)
pdfView.document = document
PDF表示のフォーマット化します
pdfView.autoScales = true
pdfView.displayMode = .singlePageContinuous
特定のページを表示します。
let pageOpen = document?.page(at: Int(表示ページ)!) {
pdfView.go(to: pageOpen)