PSPDFMutableBookmark
Objective-C
@interface PSPDFMutableBookmark : PSPDFBookmark
Swift
class MutableBookmark : Bookmark
Undocumented
-
The PDF action. Usually this will be of type
PSPDFGoToAction
, but all action types are possible.Declaration
Objective-C
@property (nonatomic, copy) PSPDFAction *_Nonnull action;
Swift
@NSCopying var action: PSPDFAction { get set }
-
A bookmark can have a name. This is optional.
Declaration
Objective-C
@property (nonatomic, copy, nullable) NSString *name;
Swift
var name: String? { get set }