MimiPageControl

@MainActor
open class MimiPageControl : MimiControl

Control that displays a horizontally aligned series of dots, each corresponding to a page in UI.

  • Number of pages to display.

    Declaration

    Swift

    @MainActor
    open var numberOfPages: Int { get set }
  • Current page that is selected.

    Declaration

    Swift

    @MainActor
    open var currentPage: Int! { get set }
  • Whether to show the page control when only a single page is visible.

    Declaration

    Swift

    @MainActor
    open var hidesForSinglePage: Bool { get set }
  • Color to use for dots in the page control.

    Declaration

    Swift

    @MainActor
    open override var tintColor: UIColor! { get set }
  • Declaration

    Swift

    @MainActor
    open override func construct(in view: UIView)