window.imagePicker.getPictures return null error in iOS 13
See original GitHub issuewindow.imagePicker.getPictures
return null error in iOS 13
but same code works fine in below iOS 13
window.imagePicker.getPictures(
function (results) {
if (results.length != 0) {
//
}
}, function (error) { //error null
console.log('Error: ' + error);
}, {
maximumImagesCount: 2
}
);
Issue Analytics
- State:
- Created 4 years ago
- Reactions:6
- Comments:5
Top Results From Across the Web
Error dismissing ImagePickerController - Apple Developer
I am working on top of the ARKit Demo App. I created a button that opens up my photo library so that I...
Read more >[Image Picker plugin] [Image Picker plugin] its crashing on ios ...
Hello,. We were having a similar issue and solved it by adding a {disable_popover: true} option to the getPictures() function as proposed here:....
Read more >Image is null after its picked by using image_picker package ...
Description: I'm using (image_picker: ^0.8.5+3) package to pick the images from gallery and camera and then upload them on backend server ...
Read more >Selecting multiple images in a PhoneGap/Cordova app
selImages = function() { window.imagePicker.getPictures( function(results) { for (var i = 0; i < results.length; i++) { console.log('Image ...
Read more >Image Picker and Image Cropper in Ionic Framework
ionic cordova plugin add cordova-plugin-image-picker ... getPicture(options) and the phone will display the Camera to the user so he can ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
I’m used cordova-plugin-mediaPicker plugin https://www.npmjs.com/package/cordova-plugin-mediapicker-dmcsdk
try this
anyone help