ra1028 / RAReorderableLayout

A UICollectionView layout whitch can move item with drag and drop.
MIT License
867 stars 140 forks source link

Disable Draging #6

Open NorbertSzydlowski opened 9 years ago

NorbertSzydlowski commented 9 years ago

Hi,

is any way to disable dragging all cells or any one?

flschlosser commented 9 years ago

Hi,

if you override the following function (In your delegate) you can disable dragging for all cells. This means that even the long press animation will not be visible.

func collectionView(collectionView: UICollectionView, allowMoveAtIndexPath indexPath: NSIndexPath) -> Bool {
    return false // or any kind of meaningful condition`
}

Hope that helps you.