OnboardingImageView

public class OnboardingImageView : UIView

The OnboardingImageView class represents a custom UIView used for displaying onboarding illustrations.

  • The object responsible for providing the illustration to be displayed in the view.

    Declaration

    Swift

    public var illustrationAdapter: OnboardingIllustrationAdapter?
  • The icon to be displayed in the view. Setting this property automatically calls the setupView() method to update the view.

    Declaration

    Swift

    public var icon: UIImage? { get set }
  • Sets up the view by adding the injected view to the view hierarchy if it is not already present. If an injected view is present, its image is updated to reflect the current icon value.

    Declaration

    Swift

    public func setupView()