FullScreenImageEditViewControllerDelegate

@protocol FullScreenImageEditViewControllerDelegate <NSObject>

The FullScreenImageEditViewControllerDelegate is the object responsible for supplying additional photo editing screens.

  • This delegate callback occurs when an user has finished editing an image and clicks on the next button to add it into the Voucher.

    Declaration

    Objective-C

    - (void)fullScreenImageEditViewControllerFinishedEditingImageMedia:
        (nonnull ImageMedia *)editedImageMedia;

    Swift

    func fullScreenImageEditViewControllerFinishedEditing(_ editedImageMedia: ImageMedia)
  • This delegate callback occurs when a user dismisses the view controller without committing changes.

    Declaration

    Objective-C

    - (void)fullScreenImageEditViewControllerCancelled;

    Swift

    func fullScreenImageEditViewControllerCancelled()