2

我正在尝试禁用PSPDFKit 附带的缩略图查看图像,我不确定它到底叫什么,所以我很难在代码中找到它。以前使用过这个库的任何人都知道这个缩略图来自哪里,它叫什么,或者有任何可能有帮助的东西!谢谢。

4

1 回答 1

1

要在 PSPDFKit 中禁用 PDF 的 ScrobbleBar(缩略图预览)和位置叠加(页码:),
您必须执行以下操作

PSPDFViewController *pdfController = [[PSPDFViewController alloc] initWithDocument:yourMagazine];

pdfController.scrobbleBarEnabled = NO; // Disable the Bottom Scrobble Bar
pdfController.pageLabelEnabled = NO; // Disables the bottom document site position overlay.
于 2013-03-20T15:14:14.830 回答