PleaseHoldView

public class PleaseHoldView : UIView

Quick and easy progress UIView to place in your app.

  • Access to PleaseHoldViewConfig to set defaults on all instances of PleaseHoldView.

    Declaration

    Swift

    public static let defaultConfig: PleaseHoldViewConfig
  • Override defaultConfig for this once instance.

    Declaration

    Swift

    public var config: PleaseHoldViewConfig { get set }
  • Read-only reference to the title UILabel.

    Declaration

    Swift

    public private(set) var titleLabel: UILabel?
  • Read-only reference to the message UILabel

    Declaration

    Swift

    public private(set) var messageLabel: UILabel?
  • Read-only reference to the UIActivityIndicatorView.

    Declaration

    Swift

    public private(set) var activityIndicator: UIActivityIndicatorView!
  • Internal use only.

    Declaration

    Swift

    public let rootView: UIStackView
  • Read or change the text of titleLabel

    Declaration

    Swift

    public var title: String? { get set }
  • Read or change the text of messageLabel

    Declaration

    Swift

    public var message: String? { get set }
  • Initialize new instance of PleaseHoldView.

    Declaration

    Swift

    public convenience init()