PSPDFGalleryViewControllerState

Objective-C

NS_CLOSED_ENUM(NSUInteger, PSPDFGalleryViewControllerState) {
    /// The view controller is currently not doing anything.
    PSPDFGalleryViewControllerStateIdle,

    /// The manifest file is currently downloaded.
    PSPDFGalleryViewControllerStateLoading,

    /// The manifest file has been downloaded and the view controller is ready.
    PSPDFGalleryViewControllerStateReady,

    /// The view controller could not load or parse the manifest file.
    PSPDFGalleryViewControllerStateError
}

Swift

@frozen enum State : UInt, @unchecked Sendable

Undocumented