awkward / Tatsi

A drop-in replacement for UIImagePickerController with the ability to select multiple images and/or videos
MIT License
110 stars 30 forks source link

Image selection sequence issue and number show of selection #43

Open ravivlb opened 4 years ago

ravivlb commented 4 years ago

Why sequence selection of selected image not working?

Also, let me know how to add the numbers for selection.

Thanks in Advance.

renssies commented 4 years ago

Could you share your code that opens the picker with me? That way I can know if you have the right settings :)

ravivlb commented 4 years ago

var config = TatsiConfig.default config.showCameraOption = false config.supportedMediaTypes = [.image] config.firstView = self.firstView config.numberOfColumns = 4

    let pickerViewController = TatsiPickerViewController(config: config)
    pickerViewController.pickerDelegate = self
    self.present(pickerViewController, animated: true, completion: nil)
renssies commented 4 years ago

Hmm, I can't seem to reproduce this issue where you can't select multiple images. I still get multiple images back from the delegate in the order they were selected.

As for adding the numbers, I guess you want to add a number on top of the image? That is currently not yet supported.