wymsee / cordova-imagePicker

Cordova Plugin For Multiple Image Selection
MIT License
407 stars 853 forks source link

maximumImagesCount not working for iOS #250

Open sunojvijayan opened 6 years ago

sunojvijayan commented 6 years ago

I am able to select more than one images with this code.

let options = { maximumImagesCount: 1, width: 500, height: 500, quality: 100 } this.imagePicker.getPictures(options).then((results) => { for (var i = 0; i < results.length; i++) { console.log('Image URI: ' + results[i]); } }, (err) => { });

shuherco commented 6 years ago

Hello sunojvijayan, did you found a way to limit selection only to 1 image in iOS ? Thanks!

sunojvijayan commented 6 years ago

No I have not.

sunojvijayan commented 6 years ago

Sorry

Commonder commented 6 years ago

Hi, @sunojvijayan , did you found a way to limit selection only to 1 image in iOS ?

sunojvijayan commented 6 years ago

No