It seems that horizontal scrolling is broken in b3 of iOS 11. Here's my code:
let pdfView = PDFView(frame: frame)
pdfView.document = pdfDocument
pdfView.autoScales = true
pdfView.displayDirection = .horizontal
pdfView.displayMode = .singlePageWhen I display this view, I see just the first page of the document. I can scroll vertically (and, judging by the scroll bar thumb size, quite a bit), but not horizontally. Without doing too much investigation, it looks like perhaps the content size of the PDFView's scroll view is being set for vertical content, not horizontal. Is anyone else seeing this?
Thanks!
Ben