PSPDFSavedAnnotationsViewController
Objective-C
@interface PSPDFSavedAnnotationsViewController
: PSPDFAnnotationGridViewController <
PSPDFAnnotationGridViewControllerDataSource, PSPDFStyleable,
PSPDFOverridable>
Swift
class SavedAnnotationsViewController : AnnotationGridViewController, AnnotationGridViewControllerDataSource, Styleable, Overridable
Shows an editable grid of saved annotation sets.
Allows saving/loading of stored annotations. Annotations are stored securely in the Keychain.
-
The default
PSPDFKeychainAnnotationSetsStore
, used if no custom store is set.Declaration
Objective-C
@property (class, readonly) NS_SWIFT_NAME(shared) id<PSPDFAnnotationSetStore> sharedAnnotationStore;
Swift
class var shared: AnnotationSetStore { get }
-
The store object that gets called when annotations are changed. Set to use the controller.
Declaration
Objective-C
@property (nonatomic) id<PSPDFAnnotationSetStore> _Nonnull annotationStore;
Swift
var annotationStore: AnnotationSetStore { get set }