PSPDFThumbnailGridViewCell

Objective-C


@interface PSPDFThumbnailGridViewCell : PSPDFPageCell <PSPDFOverridable>

Swift

class ThumbnailGridViewCell : PDFPageCell, Overridable

The thumbnail cell classed used for the thumbnail grid and thumbnail scroll bar.

Note

To modify the selection/highlight state, customize selectedBackgroundView.
  • Referenced document.

    Declaration

    Objective-C

    @property (nonatomic, nullable) PSPDFDocument *document;

    Swift

    var document: PSPDFDocument? { get set }
  • Bookmark ribbon image color. Defaults to red.

    Declaration

    Objective-C

    @property (nonatomic, nullable) UIColor *bookmarkImageColor;

    Swift

    var bookmarkImageColor: UIColor? { get set }
  • May be used to update the bookmark image.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) UIImageView *bookmarkImageView;

    Swift

    var bookmarkImageView: UIImageView? { get }
  • Update bookmark image frame and image visibility.

    Declaration

    Objective-C

    - (void)updateBookmarkImage;

    Swift

    func updateBookmarkImage()