ACBusyViewController

open class ACBusyViewController : 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 ACBusyViewController in the Identity Inspoector. The bundle identifier and nib containing the view can then be used with ACAuthenticationViewController.authenticatingBundleIdentifier and ACAuthenticationViewController.authenticatingNibName to display the view.

  • Creates an ACBusyViewController

    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

    ACBusyViewController

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