Swift PDFKit PDFView usePageViewController(_:withViewOptions:)を設定するとdisplayMode、displayDirectionの設定は無効
PDFView usePageViewController(_:withViewOptions:)
Example(true)
pdfView.usePageViewController(true, withViewOptions: nil)
スワイプで頁変更出来ます。
displayMode、displayDirectionの設定は無効になります。
Example(false)
pdfView.usePageViewController(false, withViewOptions: nil)
デフォルトはfalseです。書かなければfalseになります。
スワイプにより頁変更は実装する必要があります。
displayMode、displayDirectionの設定は有効になります。