ProgressView

@objc(PESDKProgressView)
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. Please note that your custom progress view should disable user interaction in all parts of the editor. Changing state while the progress view is visible can cause unexpected behavior.

  • 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()