Skip to content

Latest commit

 

History

History
23 lines (15 loc) · 666 Bytes

README.md

File metadata and controls

23 lines (15 loc) · 666 Bytes

CatCollectionViewReorder

Introduction

CatCollectionViewReorder is wirtten with iOS 9 new methods,it is easy to make your UICollectionView reorderable

ScreenRecords

ScreenShots1

Usage

#import "CatCollectionViewReorder.h"

CatCollectionViewReorder *collectionViewReorder = [[CatCollectionViewReorder alloc] init];
[collectionViewReorder bindToCollectionView:_collectionView];

//Make sure rewirte this delegate method
- (BOOL)collectionView:(UICollectionView *)collectionView canMoveItemAtIndexPath:(NSIndexPath *)indexPath {
    return YES;
}