GuidesAPI ReferenceRelease Notes
HomeLog InHome
Guides

BlazeStoryPlayerTitleImageStyle - iOS

The BlazeStoryPlayerTitleImageStyle struct represents the style and appearance of the title image in a story player.

Properties

isVisible

var isVisible: Bool

Indicates whether the title image is visible. Defaults to true.

size

var size: CGFloat

The size (width and height) of the title image in points. Clamped to a maximum of 32pt. Defaults to 20.

source

var source: BlazeStoryPlayerTitleImageSource

The source strategy for the title image. Defaults to .dynamic(fallback: nil).

BlazeStoryPlayerTitleImageSource

The BlazeStoryPlayerTitleImageSource enum represents the source strategy for the story player title image.

static

case static(BlazeStoryPlayerTitleImageStaticSource)

A static image provided by the SDK consumer — either a UIImage or a URL.

dynamic

case dynamic(fallback: BlazeStoryPlayerTitleImageStaticSource?)

A dynamic image sourced from the backend (titleImageUrl). An optional fallback is used when the backend image is unavailable or fails to load. Pass nil to show a gray placeholder on failure.


Did this page help you?