StoryHeaderStyling

@objc
public final class StoryHeaderStyling : NSObject

This data class represents styling of story view header

  • Visibility of the story view header text

    Declaration

    Swift

    @objc
    public var isTextVisible: Bool
  • Visibility of the story view header icon

    Declaration

    Swift

    @objc
    public var isIconVisible: Bool
  • Visibility of the story view header close button

    Declaration

    Swift

    @objc
    public var isCloseButtonVisible: Bool
  • UIImage of the story view header close button

    Declaration

    Swift

    @objc
    public var closeButtonIcon: UIImage?
  • UIImage of the story view header share button

    Declaration

    Swift

    @objc
    public var shareButtonIcon: UIImage?
  • StoryHeaderStyling initialization

    Declaration

    Swift

    @objc
    public init(isTextVisible: Bool,
                isIconVisible: Bool,
                isCloseButtonVisible: Bool,
                closeButtonIcon: UIImage? = nil,
                shareButtonIcon: UIImage? = nil)

    Parameters

    isTextVisible

    Visibility of the story view header text

    isIconVisible

    Visibility of the story view header icon

    isCloseButtonVisible

    Visibility of the story view header close button

    closeButtonIcon

    UIImage of the story view header close button

    shareButtonIcon

    UIImage of the story view header share button