FullScreenImageEditViewController
@interface FullScreenImageEditViewController : UIViewController
FullScreenImageEditViewController
is the screen responsible for displaying a selected image and
all photo editing options. It allows users to interact with and customize a selected image.
-
Default initializer for
FullScreenImageEditViewController
.Declaration
Objective-C
+ (nonnull instancetype) viewControllerWithImageMedia:(nonnull ImageMedia *)imageMedia vouchrTheme:(nullable VouchrTheme *)vouchrTheme delegate: (nullable id<FullScreenImageEditViewControllerDelegate>) delegate;
Swift
convenience init(imageMedia: ImageMedia, vouchrTheme: VouchrTheme?, delegate: FullScreenImageEditViewControllerDelegate?)
Parameters
imageMedia
- The image passed into the view controller for editing.
vouchrTheme
- The theme manager used to theme the view controller.
delegate
- The object responsible for implementing
FullScreenImageEditViewController
callbacks.