PTBookmarkViewController
@interface PTBookmarkViewController : UITableViewController <PTOverridable>The PTBookmarkViewController displays a list of user-created bookmarks in a document being viewed by a PTPDFViewCtrl.
- 
                  
                  An object that conforms to the PTBookmarkViewControllerDelegateprotocol.DeclarationObjective-C @property (nonatomic, weak, nullable) id<PTBookmarkViewControllerDelegate> delegate;Swift weak var delegate: (any PTBookmarkViewControllerDelegate)? { get set }
- 
                  
                  Returns a new instance of a PTBookmarkViewController.DeclarationObjective-C - (nonnull instancetype)initWithPDFViewCtrl: (nonnull PTPDFViewCtrl *)pdfViewCtrl;Swift init(pdfViewCtrl: PTPDFViewCtrl)
- 
                  
                  Returns a new instance of a PTBookmarkViewController.DeclarationObjective-C - (nonnull instancetype)initWithToolManager: (nonnull PTToolManager *)toolManager;Swift convenience init(toolManager: PTToolManager)
- 
                  
                  Add/remove the bookmark for a page. DeclarationObjective-C - (BOOL)toggleBookmarkForPageNumber:(int)pageNumber;Swift func toggleBookmark(forPageNumber pageNumber: Int32) -> BoolParameterspageNumberThe number of the page to be toggled. Return ValueWhether the page has bookmark after toggling. 
- 
                  
                  Check whether a page has bookmark. DeclarationObjective-C - (BOOL)hasBookmarkAtPageNumber:(int)pageNumber;Swift func hasBookmark(atPageNumber pageNumber: Int32) -> BoolParameterspageNumberThe number of the page. Return ValueWhether the page has bookmark. 
- 
                  
                  User bookmarks DeclarationObjective-C @property (nonatomic, strong) NSMutableArray<PTUserBookmark *> *_Nonnull bookmarks;Swift var bookmarks: NSMutableArray { get set }
- 
                  
                  Whether bookmarks are considered readonly and cannot be modified or deleted. The default value is NO, meaning that bookmarks can be modified and deleted.Note ThePTToolManager.readonlyproperty is also consulted when determing if bookmarks can be modified or deleted. WhenPTToolManager.readonlyis set toYESthat property takes precedence over this property’s value.DeclarationObjective-C @property (nonatomic, getter=isReadonly) BOOL readonly;Swift var isReadonly: Bool { get set }
- 
                  
                  Whether the text of newly created bookmarks is immediately editable. The default value is NO.DeclarationObjective-C @property (nonatomic) BOOL bookmarksEditableOnCreation;Swift var bookmarksEditableOnCreation: Bool { get set }
- 
                  
                  Undocumented DeclarationObjective-C -(instancetype)initWithStyle:(UITableViewStyle)style NS_UNAVAILABLE;
- 
                  
                  Undocumented DeclarationObjective-C -(instancetype)initWithCoder:(NSCoder *)aDecoder NS_UNAVAILABLE;
- 
                  
                  Undocumented DeclarationObjective-C -(instancetype)initWithNibName:(nullable NSString *)nibNameOrNil bundle:(nullable NSBundle *)nibBundleOrNil NS_UNAVAILABLE;
- 
                  
                  Undocumented DeclarationObjective-C - (instancetype)init NS_UNAVAILABLE;
 PTBookmarkViewController Class Reference
        PTBookmarkViewController Class Reference