lxcid / LXReorderableCollectionViewFlowLayout

Extends `UICollectionViewFlowLayout` to support reordering of cells. Similar to long press and pan on books in iBook.
http://lxcid.com/
MIT License
1.86k stars 328 forks source link

check currentIndexPath before reordering #41

Closed YuAo closed 4 years ago

tonyarnold commented 10 years ago

@YuAo this would be better handled by just adding something similar to the following at the top (rather than adding another level of indentation):

if (!currentIndexPath) {
    break;
}