├── .gitignore ├── CircleLayoutDemo.xcodeproj └── project.pbxproj ├── CircleLayoutDemo ├── AppDelegate.h ├── AppDelegate.m ├── Cell.h ├── Cell.m ├── CircleLayout.h ├── CircleLayout.m ├── CircleLayoutDemo-Info.plist ├── CircleLayoutDemo-Prefix.pch ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── DraggableCircleLayout.h ├── DraggableCircleLayout.m ├── ViewController.h ├── ViewController.m ├── en.lproj │ ├── InfoPlist.strings │ ├── MainStoryboard_iPad.storyboard │ └── MainStoryboard_iPhone.storyboard └── main.m ├── DraggableCollectionView ├── Helpers │ ├── LSCollectionViewHelper.h │ ├── LSCollectionViewHelper.m │ ├── LSCollectionViewLayoutHelper.h │ └── LSCollectionViewLayoutHelper.m ├── Layout │ ├── DraggableCollectionViewFlowLayout.h │ └── DraggableCollectionViewFlowLayout.m ├── UICollectionView+Draggable.h ├── UICollectionView+Draggable.m ├── UICollectionViewDataSource_Draggable.h └── UICollectionViewLayout_Warpable.h ├── FlowLayoutDemo.xcodeproj └── project.pbxproj ├── FlowLayoutDemo ├── AppDelegate.h ├── AppDelegate.m ├── Cell.h ├── Cell.m ├── Default-568h@2x.png ├── Default.png ├── Default@2x.png ├── FlowLayoutDemo-Info.plist ├── FlowLayoutDemo-Prefix.pch ├── ViewController.h ├── ViewController.m ├── en.lproj │ ├── InfoPlist.strings │ ├── MainStoryboard_iPad.storyboard │ └── MainStoryboard_iPhone.storyboard └── main.m ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/.gitignore -------------------------------------------------------------------------------- /CircleLayoutDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CircleLayoutDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/AppDelegate.h -------------------------------------------------------------------------------- /CircleLayoutDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/AppDelegate.m -------------------------------------------------------------------------------- /CircleLayoutDemo/Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/Cell.h -------------------------------------------------------------------------------- /CircleLayoutDemo/Cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/Cell.m -------------------------------------------------------------------------------- /CircleLayoutDemo/CircleLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/CircleLayout.h -------------------------------------------------------------------------------- /CircleLayoutDemo/CircleLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/CircleLayout.m -------------------------------------------------------------------------------- /CircleLayoutDemo/CircleLayoutDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/CircleLayoutDemo-Info.plist -------------------------------------------------------------------------------- /CircleLayoutDemo/CircleLayoutDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/CircleLayoutDemo-Prefix.pch -------------------------------------------------------------------------------- /CircleLayoutDemo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/Default-568h@2x.png -------------------------------------------------------------------------------- /CircleLayoutDemo/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/Default.png -------------------------------------------------------------------------------- /CircleLayoutDemo/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/Default@2x.png -------------------------------------------------------------------------------- /CircleLayoutDemo/DraggableCircleLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/DraggableCircleLayout.h -------------------------------------------------------------------------------- /CircleLayoutDemo/DraggableCircleLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/DraggableCircleLayout.m -------------------------------------------------------------------------------- /CircleLayoutDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/ViewController.h -------------------------------------------------------------------------------- /CircleLayoutDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/ViewController.m -------------------------------------------------------------------------------- /CircleLayoutDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /CircleLayoutDemo/en.lproj/MainStoryboard_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/en.lproj/MainStoryboard_iPad.storyboard -------------------------------------------------------------------------------- /CircleLayoutDemo/en.lproj/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/en.lproj/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /CircleLayoutDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/CircleLayoutDemo/main.m -------------------------------------------------------------------------------- /DraggableCollectionView/Helpers/LSCollectionViewHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/DraggableCollectionView/Helpers/LSCollectionViewHelper.h -------------------------------------------------------------------------------- /DraggableCollectionView/Helpers/LSCollectionViewHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/DraggableCollectionView/Helpers/LSCollectionViewHelper.m -------------------------------------------------------------------------------- /DraggableCollectionView/Helpers/LSCollectionViewLayoutHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/DraggableCollectionView/Helpers/LSCollectionViewLayoutHelper.h -------------------------------------------------------------------------------- /DraggableCollectionView/Helpers/LSCollectionViewLayoutHelper.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/DraggableCollectionView/Helpers/LSCollectionViewLayoutHelper.m -------------------------------------------------------------------------------- /DraggableCollectionView/Layout/DraggableCollectionViewFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/DraggableCollectionView/Layout/DraggableCollectionViewFlowLayout.h -------------------------------------------------------------------------------- /DraggableCollectionView/Layout/DraggableCollectionViewFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/DraggableCollectionView/Layout/DraggableCollectionViewFlowLayout.m -------------------------------------------------------------------------------- /DraggableCollectionView/UICollectionView+Draggable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/DraggableCollectionView/UICollectionView+Draggable.h -------------------------------------------------------------------------------- /DraggableCollectionView/UICollectionView+Draggable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/DraggableCollectionView/UICollectionView+Draggable.m -------------------------------------------------------------------------------- /DraggableCollectionView/UICollectionViewDataSource_Draggable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/DraggableCollectionView/UICollectionViewDataSource_Draggable.h -------------------------------------------------------------------------------- /DraggableCollectionView/UICollectionViewLayout_Warpable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/DraggableCollectionView/UICollectionViewLayout_Warpable.h -------------------------------------------------------------------------------- /FlowLayoutDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/FlowLayoutDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /FlowLayoutDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/FlowLayoutDemo/AppDelegate.h -------------------------------------------------------------------------------- /FlowLayoutDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/FlowLayoutDemo/AppDelegate.m -------------------------------------------------------------------------------- /FlowLayoutDemo/Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/FlowLayoutDemo/Cell.h -------------------------------------------------------------------------------- /FlowLayoutDemo/Cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/FlowLayoutDemo/Cell.m -------------------------------------------------------------------------------- /FlowLayoutDemo/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/FlowLayoutDemo/Default-568h@2x.png -------------------------------------------------------------------------------- /FlowLayoutDemo/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/FlowLayoutDemo/Default.png -------------------------------------------------------------------------------- /FlowLayoutDemo/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/FlowLayoutDemo/Default@2x.png -------------------------------------------------------------------------------- /FlowLayoutDemo/FlowLayoutDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/FlowLayoutDemo/FlowLayoutDemo-Info.plist -------------------------------------------------------------------------------- /FlowLayoutDemo/FlowLayoutDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/FlowLayoutDemo/FlowLayoutDemo-Prefix.pch -------------------------------------------------------------------------------- /FlowLayoutDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/FlowLayoutDemo/ViewController.h -------------------------------------------------------------------------------- /FlowLayoutDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/FlowLayoutDemo/ViewController.m -------------------------------------------------------------------------------- /FlowLayoutDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /FlowLayoutDemo/en.lproj/MainStoryboard_iPad.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/FlowLayoutDemo/en.lproj/MainStoryboard_iPad.storyboard -------------------------------------------------------------------------------- /FlowLayoutDemo/en.lproj/MainStoryboard_iPhone.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/FlowLayoutDemo/en.lproj/MainStoryboard_iPhone.storyboard -------------------------------------------------------------------------------- /FlowLayoutDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/FlowLayoutDemo/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lukescott/DraggableCollectionView/HEAD/README.md --------------------------------------------------------------------------------