Tatsi icon indicating copy to clipboard operation
Tatsi copied to clipboard

drag finger to select multiple not supported

Open IshuRocks opened this issue 4 years ago • 2 comments

Drag finger to select multiple photos not supported.

IshuRocks avatar Jun 10 '21 09:06 IshuRocks

This is the native iOS selection method, it should be replicated Any chance to happen ?

altagir avatar Jan 13 '23 19:01 altagir

The fix is simple :

Add to AssetsGridViewController.swift in UICollectionViewDelegate extension :

    // This will allow selecting upon dragging finger over multiple images
    override func collectionView(_ collectionView: UICollectionView, shouldBeginMultipleSelectionInteractionAt indexPath: IndexPath) -> Bool {
        return true
    }

I guess I will fork this repo since not maintained

altagir avatar Jan 13 '23 20:01 altagir