PSPDFBookmarkCell

Objective-C


@interface PSPDFBookmarkCell
    : PSPDFThumbnailTextCell <UITextFieldDelegate, PSPDFOverridable>

Swift

class BookmarkCell : ThumbnailTextCell, UITextFieldDelegate, Overridable

Custom cell used for bookmarks.

  • Delegate to communicate with the controller.

    Declaration

    Objective-C

    @property (nonatomic, weak) id<PSPDFBookmarkTableViewCellDelegate> _Nullable delegate;

    Swift

    weak var delegate: BookmarkTableViewCellDelegate? { get set }
  • Indicates if the bookmark’s page index is the currently viewed page. If this is set, it causes the page number label to be stylized differently.

    Declaration

    Objective-C

    @property (nonatomic) BOOL isCurrentPage;

    Swift

    var isCurrentPage: Bool { get set }