├── DragDropCollection ├── DragDropCollection.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ ├── contents.xcworkspacedata │ │ └── xcuserdata │ │ │ └── harikunwar.xcuserdatad │ │ │ └── UserInterfaceState.xcuserstate │ └── xcuserdata │ │ └── harikunwar.xcuserdatad │ │ ├── xcdebugger │ │ └── Breakpoints_v2.xcbkptlist │ │ └── xcschemes │ │ ├── DragDropCollection.xcscheme │ │ └── xcschememanagement.plist ├── DragDropCollection │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ └── AppIcon.appiconset │ │ │ └── Contents.json │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── CollectionViewCell.swift │ ├── Info.plist │ ├── Shared │ │ ├── DragDropCollectionView.swift │ │ ├── DragDropCollectionViewCell.swift │ │ ├── UIView+Image.swift │ │ └── close.png │ └── ViewController.swift └── License.rtf ├── README.md └── ScreenShots └── DragMove.gif /DragDropCollection/DragDropCollection.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/DragDropCollection.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /DragDropCollection/DragDropCollection.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/DragDropCollection.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /DragDropCollection/DragDropCollection.xcodeproj/project.xcworkspace/xcuserdata/harikunwar.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/DragDropCollection.xcodeproj/project.xcworkspace/xcuserdata/harikunwar.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /DragDropCollection/DragDropCollection.xcodeproj/xcuserdata/harikunwar.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/DragDropCollection.xcodeproj/xcuserdata/harikunwar.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /DragDropCollection/DragDropCollection.xcodeproj/xcuserdata/harikunwar.xcuserdatad/xcschemes/DragDropCollection.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/DragDropCollection.xcodeproj/xcuserdata/harikunwar.xcuserdatad/xcschemes/DragDropCollection.xcscheme -------------------------------------------------------------------------------- /DragDropCollection/DragDropCollection.xcodeproj/xcuserdata/harikunwar.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/DragDropCollection.xcodeproj/xcuserdata/harikunwar.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /DragDropCollection/DragDropCollection/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/DragDropCollection/AppDelegate.swift -------------------------------------------------------------------------------- /DragDropCollection/DragDropCollection/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/DragDropCollection/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /DragDropCollection/DragDropCollection/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/DragDropCollection/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /DragDropCollection/DragDropCollection/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/DragDropCollection/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /DragDropCollection/DragDropCollection/CollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/DragDropCollection/CollectionViewCell.swift -------------------------------------------------------------------------------- /DragDropCollection/DragDropCollection/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/DragDropCollection/Info.plist -------------------------------------------------------------------------------- /DragDropCollection/DragDropCollection/Shared/DragDropCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/DragDropCollection/Shared/DragDropCollectionView.swift -------------------------------------------------------------------------------- /DragDropCollection/DragDropCollection/Shared/DragDropCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/DragDropCollection/Shared/DragDropCollectionViewCell.swift -------------------------------------------------------------------------------- /DragDropCollection/DragDropCollection/Shared/UIView+Image.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/DragDropCollection/Shared/UIView+Image.swift -------------------------------------------------------------------------------- /DragDropCollection/DragDropCollection/Shared/close.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/DragDropCollection/Shared/close.png -------------------------------------------------------------------------------- /DragDropCollection/DragDropCollection/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/DragDropCollection/ViewController.swift -------------------------------------------------------------------------------- /DragDropCollection/License.rtf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/DragDropCollection/License.rtf -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/README.md -------------------------------------------------------------------------------- /ScreenShots/DragMove.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/runrunrun/DragDropCollection/HEAD/ScreenShots/DragMove.gif --------------------------------------------------------------------------------