IPBusyViewController

open class IPBusyViewController : UIViewController

Class used to display a ‘busy’ screen, which is displayed when the application is performing a lengthy task. Client applications can use this class to create a custom busy UI. Create a new view controller in Interface Builder, then set the Custom Class property to IPBusyViewController in the Identity Inspoector. The bundle identifier and nib containing the view can then be used with IPAuthenticationViewController.authenticatingBundleIdentifier and IPAuthenticationViewController.authenticatingNibName to display the view.

  • Creates an IPBusyViewController

    Declaration

    Swift

    public init?(message: String?, bundleIdentifier: String?, nibName: String?)

    Parameters

    message

    The message to display.

    bundleIdentifier

    The ID of the bundle containing the UI for the view controller.

    nibName

    The name of the nib file containing the UI.

    Return Value

    IPBusyViewController

    If bundleIdentifier or nibName are nil the default UI for the status controller are used.