3

I'm using PSPDFKit. The only mode I can show the pages is single. I'm wondering if it is possible to show two pages with when the device is in landscape position?

Mariam
  • 103
  • 2
  • 10

1 Answers1

2

When creating view controller for PSPDFKit using PSPDFView controller. make the page mode Automatic. It must be something like this:

PSPDFViewController *pdfController = [[PSPDFViewController alloc] initWithDocument:pdfDocument];
pdfController.pageMode = PSPDFPageModeAutomatic;
jackal
  • 1,143
  • 17
  • 32