ProgressModalViewController
final public class ProgressModalViewController: UIViewController
A progress view controller that is intended to be presented modally over an existing view controller
-
The top padding of the popup.
Declaration
Swift
public var topPadding: CGFloat = 0.0
-
The title of the modal view.
Declaration
Swift
public let titleLabel = UILabel()
-
The body of the modal view.
Declaration
Swift
public let bodyLabel = UILabel()
-
The cancel button
Declaration
Swift
public let cancelButton = UIButton(type: .custom)
-
The progress indicator view of the modal view.
Declaration
Swift
public let progressBar = UIProgressView(progressViewStyle: .default)
-
The delegate of the modal view controller.
Declaration
Swift
public weak var delegate: ProgressModalViewControllerDelegate?
-
Undocumented
Declaration
Swift
override public func viewDidLoad()
-
Undocumented
Declaration
Swift
public override func viewDidAppear(_ animated: Bool)
-
Undocumented
Declaration
Swift
public override func viewDidDisappear(_ animated: Bool)
-
Undocumented
Declaration
Swift
public func observeProgress(_ progress: Progress)