From 09f4768fb6f46bb3d10eba063cdeb0e435a9eda5 Mon Sep 17 00:00:00 2001 From: victorsosa Date: Fri, 6 May 2016 17:29:27 -0400 Subject: [PATCH] Added save to gallery option - IOS only --- camera/camera.ios.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/camera/camera.ios.ts b/camera/camera.ios.ts index cf0a0c35d..54d30d5b8 100644 --- a/camera/camera.ios.ts +++ b/camera/camera.ios.ts @@ -62,7 +62,7 @@ class UIImagePickerControllerDelegateImpl extends NSObject implements UIImagePic if (this._callback) { this._callback(imageSourceResult); if(this._saveToGallery) { - UIImageWriteToSavedPhotosAlbum(imageSourceResult.ios, nil, nil, nil); + UIImageWriteToSavedPhotosAlbum(imageSourceResult.ios, null, null, null); } } }