我正在尝试禁用PSPDFKit附带的缩略图see image,我不确定它到底叫什么,所以我很难在代码中找到它。任何以前使用过这个库的人都知道这个缩略图是从哪里来的,它叫什么,或者有任何可能会有帮助的东西!谢谢。
发布于 2013-03-20 23:14:15
在PSPDFKit中禁用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.https://stackoverflow.com/questions/15525198
复制相似问题