PSPDFCollectionReusableFilterViewStyle

Objective-C

NS_CLOSED_ENUM(NSInteger, PSPDFCollectionReusableFilterViewStyle) {
    /// Standard view.
    PSPDFCollectionReusableFilterViewStyleNone,
    /// Use a blur effect that composes well with light colors, like plain UIKit bars.
    PSPDFCollectionReusableFilterViewStyleLightBlur,
    /// Use a blur effect that is suitable for composes well with dark colors, like in the demo app.
    PSPDFCollectionReusableFilterViewStyleDarkBlur,
    /// Use a blur effect that’s tinted even lighter than the lightBlur style.
    PSPDFCollectionReusableFilterViewStyleExtraLightBlur,
}

Swift

@frozen enum Style : Int, @unchecked Sendable

Undocumented