ImagePicker multiple selection is not working in iOS

Please provide the following:

  1. SDK Version: 47.0.0
  2. Platforms(Android/iOS/web/all): iOS
  3. Add the appropriate “Tag” based on what Expo library you have a question on.

Cannot select multiple images on iOS though works perfectly for Android.
expo-image-picker: 14.0.2
ios version: 16.2

code:

const options = {
mediaTypes: ImagePicker.MediaTypeOptions.Images,
allowsMultipleSelection: true,
aspect: [4,3],
quality: 0.5,
selectionLimit: 6
};
const result = await ImagePicker.launchImageLibraryAsync(options);

The same thing also happened to me. Any update on this?

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.