Tatsi
Tatsi copied to clipboard
drag finger to select multiple not supported
Drag finger to select multiple photos not supported.
This is the native iOS selection method, it should be replicated Any chance to happen ?
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