ProgressView

@objc(IMGLYProgressView) public protocol ProgressView

To use a custom progress HUD when saving a photo or while downloading stickers etc., your progress view must implement this protocol.

  • Displays the progress HUD with the given message.

    Declaration

    Swift

    func show(withMessage message: String)

    Parameters

    message

    The message to display in the progress HUD.

  • Hides the progress HUD.

    Declaration

    Swift

    func hide()