EULAContent

public struct EULAContent

The content of the EULA screen. Contains a title and an NSAttributedString as the content value.

  • The title of the EULA screen.

    Declaration

    Swift

    public let title: String
  • The EULA content as NSAttributedString.

    Declaration

    Swift

    public let content: NSAttributedString
  • The version of the EULA. We suggest to use a date as string, or have a consistent versioning style.

    Declaration

    Swift

    public let version: String
  • Instantiates the EULAContent. This struct is needed for the EULAStep.

    Declaration

    Swift

    public init(title: String, content: NSAttributedString, version: String)

    Parameters

    title

    The title of the EULA screen.

    content

    The EULA content as NSAttributedString.