diff --git a/src/photos.cs b/src/photos.cs index 3499c2a94b9c..f1aff7db346f 100644 --- a/src/photos.cs +++ b/src/photos.cs @@ -1150,6 +1150,10 @@ interface PHLivePhotoEditingContext { [Export ("prepareLivePhotoForPlaybackWithTargetSize:options:completionHandler:")] void _PrepareLivePhotoForPlayback (CGSize targetSize, [NullAllowed] NSDictionary options, Action handler); + [Async] + [Wrap ("_PrepareLivePhotoForPlayback (targetSize, null, handler)")] + void PrepareLivePhotoForPlayback (CGSize targetSize, Action handler); + [Async] [Wrap ("_PrepareLivePhotoForPlayback (targetSize, (NSDictionary)options, handler)", IsVirtual = true)] void PrepareLivePhotoForPlayback (CGSize targetSize, [NullAllowed] NSDictionary options, Action handler); @@ -1166,6 +1170,10 @@ interface PHLivePhotoEditingContext { [Export ("saveLivePhotoToOutput:options:completionHandler:")] void _SaveLivePhoto (PHContentEditingOutput output, [NullAllowed] NSDictionary options, Action handler); + [Async] + [Wrap ("_SaveLivePhoto (output, null, handler)")] + void SaveLivePhoto (PHContentEditingOutput output, Action handler); + [Async] [Wrap ("_SaveLivePhoto (output, options, handler)", IsVirtual = true)] void SaveLivePhoto (PHContentEditingOutput output, [NullAllowed] NSDictionary options, Action handler);