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.
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.