3

在 iOS 6 中,我注意到当我使用 UIDocumentInteractionController 预览 PDF 文档时,它会在屏幕右侧显示漂亮的页面缩略图。但是,如果我使用 QLPreviewController 显示相同的 PDF,则不会出现这些缩略图。

如何让 QLPreviewController 以与 UIDocumentInteractionController 相同的方式显示 PDF 页面的缩略图?

4

1 回答 1

2

当我使用 QLPreviewController 时,缩略图会出现在我面前

[self presentViewController:previewController animated:YES completion:nil];

您是否尝试过以模态方式呈现控制器?

于 2013-07-03T19:04:59.983 回答