DraggableCollectionView icon indicating copy to clipboard operation
DraggableCollectionView copied to clipboard

Extension for the UICollectionView and UICollectionViewLayout that allows a user to move items with drag and drop. --- HELP WANTED --- Looking for maintainer and help with the experimental branch.

Results 43 DraggableCollectionView issues
Sort by recently updated
recently updated
newest added

Does it support horizontal scroll collection view?

`handleLongPressGesture:` was using `indexPathForItemClosestToPoint:` method to retrieve the index path of the pressed cell. This works well on layouts that fill the entire collection view space but not on other...

If the long press is not happening on the cell but on the empty space of the UICollectionView, it causes an NSRangeException. You can reproduce the bug from the FlowLayoutDemo...

Hello, how could I swab two cells without reordering the other cells for example: I have the cells below: 123 456 789 After swapping cell no.6 with cell no.9 it...

Hi there, I have found a crash and some unexpected behaviour which is caused by placing a second finger on the screen. It does not always result in a crash...

If you hold your finger on one cell, then place a finger on the other the center of the two fingers is used (different issue). When you lift the first...

bug

Fixes issue when collection view cells have dynamic sizes, but for example you want to allow moving only 5 cells that have same size (this is case in my project)....

Simple to reproduce. In the demo app, in ViewController.m, add the following method: - (CGSize)collectionView:(UICollectionView _)collectionView layout:(UICollectionViewLayout_)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath { return CGSizeMake(indexPath.row == 0 ? 200 : 100, 100); }...

@lukescott Please help... # My Requirement: My requirement is to achieve, what is displayed in the following image. ![img_1](https://cloud.githubusercontent.com/assets/4958184/5558586/33340ce8-8d53-11e4-9ef3-0548c412d753.png) I am able to modify the UICollectionView appearance. But, when I...