FrameImageGroup

@objcMembers
@objc(PESDKFrameImageGroup)
open class FrameImageGroup : NSObject

This class represents a group of the images.

  • The image placed at the start.

    Declaration

    Swift

    public var startImage: UIImage?
  • The image placed in the middle.

    Declaration

    Swift

    public var midImage: UIImage?
  • The image placed at the end.

    Declaration

    Swift

    public var endImage: UIImage?
  • The url of the image placed at the start.

    Declaration

    Swift

    public let startImageURL: URL?
  • The url of the image placed in the middle.

    Declaration

    Swift

    public let midImageURL: URL?
  • The url of the image placed at the end.

    Declaration

    Swift

    public let endImageURL: URL?
  • The tiling mode for the image in the middle.

    Declaration

    Swift

    public var midImageMode: FrameTileMode
  • Creates a new instance of FrameImageGroup for the images at the given urls.

    Declaration

    Swift

    public init(startImageURL: URL?, midImageURL: URL, endImageURL: URL?)

    Parameters

    startImageURL

    The url of the image placed at the start.

    midImageURL

    The url of the image placed in the middle.

    endImageURL

    The url of the image placed at the end.