使用 QLPreviewController 查看 PDF 的默认实现是从上到下滑动页面。无论如何我可以让它从左到右滑动吗?
QLPreviewController *previewVC = [QLPreviewController new];
previewVC.view.backgroundColor = [UIColor whiteColor];
previewVC.dataSource = self;
[self.parentViewController presentViewController:previewVC animated:YES completion:^{
[[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleDefault];
}];