├── .gitignore ├── CollectionViewDragDrop.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── CollectionViewDragDrop ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ └── wallpapers │ │ ├── Contents.json │ │ ├── abstract-shapes.imageset │ │ ├── Contents.json │ │ └── abstract-shapes.jpg │ │ ├── abstract.imageset │ │ ├── Contents.json │ │ └── abstract.jpg │ │ ├── antelope-canyon.imageset │ │ ├── Contents.json │ │ └── antelope-canyon.jpg │ │ ├── bahamas-aerial.imageset │ │ ├── Contents.json │ │ └── bahamas-aerial.jpg │ │ ├── blue-pond.imageset │ │ ├── Contents.json │ │ └── blue-pond.jpg │ │ ├── color-burst-1.imageset │ │ ├── Contents.json │ │ └── color-burst-1.jpg │ │ ├── color-burst-2.imageset │ │ ├── Contents.json │ │ └── color-burst-2.jpg │ │ ├── color-burst-3.imageset │ │ ├── Contents.json │ │ └── color-burst-3.jpg │ │ ├── death-valley.imageset │ │ ├── Contents.json │ │ └── death-valley.jpg │ │ ├── desert.imageset │ │ ├── Contents.json │ │ └── desert.jpg │ │ ├── earth-and-moon.imageset │ │ ├── Contents.json │ │ └── earth-and-moon.jpg │ │ ├── earth-horizon.imageset │ │ ├── Contents.json │ │ └── earth-horizon.jpg │ │ ├── elephant.imageset │ │ ├── Contents.json │ │ └── elephant.jpg │ │ ├── floating-ice.imageset │ │ ├── Contents.json │ │ └── floating-ice.jpg │ │ ├── foggy-forest.imageset │ │ ├── Contents.json │ │ └── foggy-forest.jpg │ │ ├── foxtail-barley.imageset │ │ ├── Contents.json │ │ └── foxtail-barley.jpg │ │ ├── high-sierra.imageset │ │ ├── Contents.json │ │ └── high-sierra.jpg │ │ ├── ink-cloud.imageset │ │ ├── Contents.json │ │ └── ink-cloud.jpg │ │ ├── lake.imageset │ │ ├── Contents.json │ │ └── lake.jpg │ │ ├── milky-way.imageset │ │ ├── Contents.json │ │ └── milky-way.jpg │ │ ├── mountain-range.imageset │ │ ├── Contents.json │ │ └── mountain-range.jpg │ │ ├── poppies.imageset │ │ ├── Contents.json │ │ └── poppies.jpg │ │ ├── rice-paddy.imageset │ │ ├── Contents.json │ │ └── rice-paddy.jpg │ │ ├── rolling-waves.imageset │ │ ├── Contents.json │ │ └── rolling-waves.jpg │ │ ├── sierra-2.imageset │ │ ├── Contents.json │ │ └── sierra-2.jpg │ │ ├── sierra.imageset │ │ ├── Contents.json │ │ └── sierra.jpg │ │ ├── wave.imageset │ │ ├── Contents.json │ │ └── wave.jpg │ │ ├── yosemite-2.imageset │ │ ├── Contents.json │ │ └── yosemite-2.jpg │ │ ├── yosemite-3.imageset │ │ ├── Contents.json │ │ └── yosemite-3.jpg │ │ ├── yosemite-4.imageset │ │ ├── Contents.json │ │ └── yosemite-4.jpg │ │ ├── yosemite-5.imageset │ │ ├── Contents.json │ │ └── yosemite-5.jpg │ │ └── yosemite.imageset │ │ ├── Contents.json │ │ └── yosemite.jpg ├── Base.lproj │ └── Main.storyboard ├── CollectionViewDragDrop.entitlements ├── CustomCollectionView.swift ├── CustomCollectionViewItem.swift ├── CustomCollectionViewItem.xib ├── Info.plist └── ViewController.swift ├── LICENSE ├── README.md └── nscollectionview-drag-animation.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/.gitignore -------------------------------------------------------------------------------- /CollectionViewDragDrop.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CollectionViewDragDrop.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CollectionViewDragDrop.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CollectionViewDragDrop/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/AppDelegate.swift -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/abstract-shapes.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/abstract-shapes.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/abstract-shapes.imageset/abstract-shapes.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/abstract-shapes.imageset/abstract-shapes.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/abstract.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/abstract.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/abstract.imageset/abstract.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/abstract.imageset/abstract.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/antelope-canyon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/antelope-canyon.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/antelope-canyon.imageset/antelope-canyon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/antelope-canyon.imageset/antelope-canyon.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/bahamas-aerial.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/bahamas-aerial.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/bahamas-aerial.imageset/bahamas-aerial.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/bahamas-aerial.imageset/bahamas-aerial.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/blue-pond.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/blue-pond.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/blue-pond.imageset/blue-pond.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/blue-pond.imageset/blue-pond.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/color-burst-1.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/color-burst-1.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/color-burst-1.imageset/color-burst-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/color-burst-1.imageset/color-burst-1.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/color-burst-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/color-burst-2.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/color-burst-2.imageset/color-burst-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/color-burst-2.imageset/color-burst-2.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/color-burst-3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/color-burst-3.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/color-burst-3.imageset/color-burst-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/color-burst-3.imageset/color-burst-3.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/death-valley.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/death-valley.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/death-valley.imageset/death-valley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/death-valley.imageset/death-valley.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/desert.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/desert.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/desert.imageset/desert.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/desert.imageset/desert.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/earth-and-moon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/earth-and-moon.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/earth-and-moon.imageset/earth-and-moon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/earth-and-moon.imageset/earth-and-moon.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/earth-horizon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/earth-horizon.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/earth-horizon.imageset/earth-horizon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/earth-horizon.imageset/earth-horizon.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/elephant.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/elephant.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/elephant.imageset/elephant.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/elephant.imageset/elephant.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/floating-ice.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/floating-ice.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/floating-ice.imageset/floating-ice.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/floating-ice.imageset/floating-ice.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/foggy-forest.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/foggy-forest.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/foggy-forest.imageset/foggy-forest.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/foggy-forest.imageset/foggy-forest.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/foxtail-barley.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/foxtail-barley.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/foxtail-barley.imageset/foxtail-barley.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/foxtail-barley.imageset/foxtail-barley.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/high-sierra.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/high-sierra.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/high-sierra.imageset/high-sierra.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/high-sierra.imageset/high-sierra.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/ink-cloud.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/ink-cloud.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/ink-cloud.imageset/ink-cloud.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/ink-cloud.imageset/ink-cloud.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/lake.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/lake.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/lake.imageset/lake.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/lake.imageset/lake.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/milky-way.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/milky-way.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/milky-way.imageset/milky-way.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/milky-way.imageset/milky-way.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/mountain-range.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/mountain-range.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/mountain-range.imageset/mountain-range.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/mountain-range.imageset/mountain-range.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/poppies.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/poppies.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/poppies.imageset/poppies.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/poppies.imageset/poppies.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/rice-paddy.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/rice-paddy.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/rice-paddy.imageset/rice-paddy.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/rice-paddy.imageset/rice-paddy.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/rolling-waves.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/rolling-waves.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/rolling-waves.imageset/rolling-waves.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/rolling-waves.imageset/rolling-waves.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/sierra-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/sierra-2.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/sierra-2.imageset/sierra-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/sierra-2.imageset/sierra-2.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/sierra.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/sierra.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/sierra.imageset/sierra.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/sierra.imageset/sierra.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/wave.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/wave.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/wave.imageset/wave.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/wave.imageset/wave.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite-2.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite-2.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite-2.imageset/yosemite-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite-2.imageset/yosemite-2.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite-3.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite-3.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite-3.imageset/yosemite-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite-3.imageset/yosemite-3.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite-4.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite-4.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite-4.imageset/yosemite-4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite-4.imageset/yosemite-4.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite-5.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite-5.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite-5.imageset/yosemite-5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite-5.imageset/yosemite-5.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite.imageset/yosemite.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Assets.xcassets/wallpapers/yosemite.imageset/yosemite.jpg -------------------------------------------------------------------------------- /CollectionViewDragDrop/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CollectionViewDragDrop/CollectionViewDragDrop.entitlements: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/CollectionViewDragDrop.entitlements -------------------------------------------------------------------------------- /CollectionViewDragDrop/CustomCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/CustomCollectionView.swift -------------------------------------------------------------------------------- /CollectionViewDragDrop/CustomCollectionViewItem.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/CustomCollectionViewItem.swift -------------------------------------------------------------------------------- /CollectionViewDragDrop/CustomCollectionViewItem.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/CustomCollectionViewItem.xib -------------------------------------------------------------------------------- /CollectionViewDragDrop/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/Info.plist -------------------------------------------------------------------------------- /CollectionViewDragDrop/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/CollectionViewDragDrop/ViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/README.md -------------------------------------------------------------------------------- /nscollectionview-drag-animation.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeanetienne/CollectionViewDragDrop/HEAD/nscollectionview-drag-animation.gif --------------------------------------------------------------------------------