AdobeUXImageEditorViewControllerDelegate Protocol Reference
Conforms to | NSObject |
Declared in | AdobeUXImageEditorViewController.h |
Overview
Implement this protocol to be notified when the user is done using the editor. You are responsible for dismissing the editor when you (and/or your user) are finished with it.
Instance Methods
photoEditor:finishedWithImage:
Implement this method to be notified when the user presses the “Done” button.
- (void)photoEditor:(AdobeUXImageEditorViewController *)editor finishedWithImage:(UIImage *__nullable)image
Parameters
- editor
The photo editor controller.
- image
The edited image.
Discussion
Implement this method to be notified when the user presses the “Done” button.
The edited image is passed via the image
parameter. The size of this image may
not be equivalent to the size of the input image, if the input image is larger
than the maximum image size supported by the SDK. Currently, the maximum
size is {1024.0, 1024.0} pixels on all devices.
Declared In
AdobeUXImageEditorViewController.h
photoEditorCanceled:
Implement this method to be notified when the user presses the “Cancel” button.
- (void)photoEditorCanceled:(AdobeUXImageEditorViewController *)editor
Parameters
- editor
The photo editor controller.
Discussion
Implement this method to be notified when the user presses the “Cancel” button.
Declared In
AdobeUXImageEditorViewController.h