LXReorderableCollectionViewFlowLayout icon indicating copy to clipboard operation
LXReorderableCollectionViewFlowLayout copied to clipboard

Extends `UICollectionViewFlowLayout` to support reordering of cells. Similar to long press and pan on books in iBook.

Results 58 LXReorderableCollectionViewFlowLayout issues
Sort by recently updated
recently updated
newest added

Hi, I had a small problem with cells which had nonzero corner radius and shadow as well as some scale transform (e.g. on selected cells). The properties were not copied...

https://github.com/lxcid/LXReorderableCollectionViewFlowLayout/issues/66

Added Springboard-like page scrolling for when the collection view has paging enabled and updated the example. We needed this for collection views that can only scroll to the page offset,...

First Thanks for the great post. I have created the book shelf view(similar to iBooks) using collection view.Now i am trying to swap/re-order the shelf just like tableview reordering of...

In the demo project, add the following code to LXCollectionViewController.m - (CGSize)collectionView:(UICollectionView _)collectionView layout:(UICollectionViewLayout_)collectionViewLayout sizeForItemAtIndexPath:(NSIndexPath *)indexPath { return CGSizeMake(indexPath.row == 0 ? 200 : 100, 100); } The resulted screen...

While reordering, the collection view will automatically scroll when you hit an edge, but the items don't reorder as that scroll occurs.

I have a classic UICollectionView inside of a viewController that uses a LXReorderableCollectionViewFlowLayout for reordering. The reordering works great and the underlying arrays change accordingly so the cells all show...

When the collection view layout is being removed from the collection view the previously added gesture recognizers should be removed.

Awesome project going on here! Honestly it was SO useful. I've extended it just a bit and I want to know if it's worth pushing up to github. Essentially, we...

I have a side menu structure and am trying to use this on the collection views for each item. When i tap a menu item, it replaces the active view...