ImagePickerPresenterDelegate
public protocol ImagePickerPresenterDelegate : AnyObject
                Represents a type that receives selection and cancel events from a ImagePickerPresenter.
- 
                  
                  
Method called when an image has been selected by the
ImagePickerPresenter.Declaration
Swift
func didSelect(asset: PHAsset?, image: UIImage, with imageURL: URL?, from imagePickerPresenter: ImagePickerPresenter)Parameters
assetThe
PHAssetassociated with the image.imageThe image selected.
imageURLThe
URLwhere the image is located.imagePickerPresenterThe
ImagePickerPresenterthat selected the image. - 
                  
                  
Method called when a movie has been selected by the
ImagePickerPresenter.Declaration
Swift
func didSelect(asset: PHAsset?, movieURL: URL, from imagePickerPresenter: ImagePickerPresenter)Parameters
assetThe
PHAssetassociated with the movie.imageURLThe
URLwhere the movie is located.imagePickerPresenterThe
ImagePickerPresenterthat selected the movie. - 
                  
                  
Method called when image picking has been cancelled.
Declaration
Swift
func didCancelPickingImage() 
View on GitHub
        ImagePickerPresenterDelegate Protocol Reference