Added save to gallery option - IOS only

This commit is contained in:
victorsosa
2016-05-06 17:29:27 -04:00
parent 3120bf0683
commit 09f4768fb6

View File

@ -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);
}
}
}