RGLCustomizationTheme

Objective-C

NS_ENUM(NSInteger, RGLCustomizationTheme) {
  /// Increased opacity and more contrast
  RGLCustomizationThemeClear = 0,
  /// Transparent, revealing the content beneath
  RGLCustomizationThemeLiquidGlass = 1,
}

Swift

enum CustomizationTheme : Int, @unchecked Sendable

Undocumented

  • Increased opacity and more contrast

    Declaration

    Objective-C

    RGLCustomizationThemeClear = 0

    Swift

    case clear = 0
  • Transparent, revealing the content beneath

    Declaration

    Objective-C

    RGLCustomizationThemeLiquidGlass = 1

    Swift

    case liquidGlass = 1