nek023 / QBImagePicker

A clone of UIImagePickerController with multiple selection support.
MIT License
1.78k stars 553 forks source link

Changing selectedAssets to be read-write #210

Open azizdev opened 6 years ago

azizdev commented 6 years ago

In QBImagePickerController.h this line: @property (nonatomic, strong, readonly) NSMutableOrderedSet selectedAssets; Should be changed to: @property (nonatomic, strong, readwrite) NSMutableOrderedSet selectedAssets;

So that if you open the image picker again you can assign the selected assets to _selectedAssets so you can see the old selected items.

Please consider changing it in the next release, Thanks.