├── .gitignore ├── CollectionViewWithMovingItem.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── frogcjn.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── frogcjn.xcuserdatad │ └── xcschemes │ ├── CollectionViewWithMovingItem.xcscheme │ └── xcschememanagement.plist ├── CollectionViewWithMovingItem ├── .DS_Store ├── AppDelegate.swift ├── Assets.xcassets │ ├── .DS_Store │ ├── 0_full.imageset │ │ ├── 0_full.jpg │ │ └── Contents.json │ ├── 10_full.imageset │ │ ├── 10_full.jpg │ │ └── Contents.json │ ├── 11_full.imageset │ │ ├── 11_full.jpg │ │ └── Contents.json │ ├── 12_full.imageset │ │ ├── 12_full.jpg │ │ └── Contents.json │ ├── 13_full.imageset │ │ ├── 13_full.jpg │ │ └── Contents.json │ ├── 14_full.imageset │ │ ├── 14_full.jpg │ │ └── Contents.json │ ├── 15_full.imageset │ │ ├── 15_full.jpg │ │ └── Contents.json │ ├── 16_full.imageset │ │ ├── 16_full.jpg │ │ └── Contents.json │ ├── 17_full.imageset │ │ ├── 17_full.jpg │ │ └── Contents.json │ ├── 18_full.imageset │ │ ├── 18_full.jpg │ │ └── Contents.json │ ├── 19_full.imageset │ │ ├── 19_full.jpg │ │ └── Contents.json │ ├── 1_full.imageset │ │ ├── 1_full.jpg │ │ └── Contents.json │ ├── 20_full.imageset │ │ ├── 20_full.jpg │ │ └── Contents.json │ ├── 21_full.imageset │ │ ├── 21_full.jpg │ │ └── Contents.json │ ├── 22_full.imageset │ │ ├── 22_full.jpg │ │ └── Contents.json │ ├── 23_full.imageset │ │ ├── 23_full.jpg │ │ └── Contents.json │ ├── 24_full.imageset │ │ ├── 24_full.jpg │ │ └── Contents.json │ ├── 25_full.imageset │ │ ├── 25_full.jpg │ │ └── Contents.json │ ├── 26_full.imageset │ │ ├── 26_full.jpg │ │ └── Contents.json │ ├── 27_full.imageset │ │ ├── 27_full.jpg │ │ └── Contents.json │ ├── 28_full.imageset │ │ ├── 28_full.jpg │ │ └── Contents.json │ ├── 29_full.imageset │ │ ├── 29_full.jpg │ │ └── Contents.json │ ├── 2_full.imageset │ │ ├── 2_full.jpg │ │ └── Contents.json │ ├── 30_full.imageset │ │ ├── 30_full.jpg │ │ └── Contents.json │ ├── 31_full.imageset │ │ ├── 31_full.jpg │ │ └── Contents.json │ ├── 3_full.imageset │ │ ├── 3_full.jpg │ │ └── Contents.json │ ├── 4_full.imageset │ │ ├── 4_full.jpg │ │ └── Contents.json │ ├── 5_full.imageset │ │ ├── 5_full.jpg │ │ └── Contents.json │ ├── 6_full.imageset │ │ ├── 6_full.jpg │ │ └── Contents.json │ ├── 7_full.imageset │ │ ├── 7_full.jpg │ │ └── Contents.json │ ├── 8_full.imageset │ │ ├── 8_full.jpg │ │ └── Contents.json │ ├── 9_full.imageset │ │ ├── 9_full.jpg │ │ └── Contents.json │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ └── LaunchScreen.storyboard ├── Info.plist ├── Main.storyboard ├── Photo.swift ├── PhotoCell.swift └── PhotosCC.swift ├── README.md └── _mov.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/.gitignore -------------------------------------------------------------------------------- /CollectionViewWithMovingItem.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CollectionViewWithMovingItem.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CollectionViewWithMovingItem.xcodeproj/project.xcworkspace/xcuserdata/frogcjn.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem.xcodeproj/project.xcworkspace/xcuserdata/frogcjn.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CollectionViewWithMovingItem.xcodeproj/xcuserdata/frogcjn.xcuserdatad/xcschemes/CollectionViewWithMovingItem.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem.xcodeproj/xcuserdata/frogcjn.xcuserdatad/xcschemes/CollectionViewWithMovingItem.xcscheme -------------------------------------------------------------------------------- /CollectionViewWithMovingItem.xcodeproj/xcuserdata/frogcjn.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem.xcodeproj/xcuserdata/frogcjn.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/.DS_Store -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/AppDelegate.swift -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/.DS_Store -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/0_full.imageset/0_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/0_full.imageset/0_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/0_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/0_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/10_full.imageset/10_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/10_full.imageset/10_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/10_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/10_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/11_full.imageset/11_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/11_full.imageset/11_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/11_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/11_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/12_full.imageset/12_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/12_full.imageset/12_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/12_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/12_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/13_full.imageset/13_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/13_full.imageset/13_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/13_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/13_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/14_full.imageset/14_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/14_full.imageset/14_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/14_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/14_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/15_full.imageset/15_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/15_full.imageset/15_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/15_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/15_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/16_full.imageset/16_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/16_full.imageset/16_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/16_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/16_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/17_full.imageset/17_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/17_full.imageset/17_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/17_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/17_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/18_full.imageset/18_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/18_full.imageset/18_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/18_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/18_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/19_full.imageset/19_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/19_full.imageset/19_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/19_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/19_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/1_full.imageset/1_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/1_full.imageset/1_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/1_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/1_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/20_full.imageset/20_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/20_full.imageset/20_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/20_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/20_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/21_full.imageset/21_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/21_full.imageset/21_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/21_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/21_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/22_full.imageset/22_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/22_full.imageset/22_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/22_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/22_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/23_full.imageset/23_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/23_full.imageset/23_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/23_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/23_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/24_full.imageset/24_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/24_full.imageset/24_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/24_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/24_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/25_full.imageset/25_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/25_full.imageset/25_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/25_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/25_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/26_full.imageset/26_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/26_full.imageset/26_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/26_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/26_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/27_full.imageset/27_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/27_full.imageset/27_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/27_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/27_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/28_full.imageset/28_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/28_full.imageset/28_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/28_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/28_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/29_full.imageset/29_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/29_full.imageset/29_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/29_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/29_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/2_full.imageset/2_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/2_full.imageset/2_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/2_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/2_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/30_full.imageset/30_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/30_full.imageset/30_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/30_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/30_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/31_full.imageset/31_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/31_full.imageset/31_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/31_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/31_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/3_full.imageset/3_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/3_full.imageset/3_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/3_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/3_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/4_full.imageset/4_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/4_full.imageset/4_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/4_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/4_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/5_full.imageset/5_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/5_full.imageset/5_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/5_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/5_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/6_full.imageset/6_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/6_full.imageset/6_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/6_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/6_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/7_full.imageset/7_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/7_full.imageset/7_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/7_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/7_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/8_full.imageset/8_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/8_full.imageset/8_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/8_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/8_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/9_full.imageset/9_full.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/9_full.imageset/9_full.jpg -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/9_full.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/9_full.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Info.plist -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Main.storyboard -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/Photo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/Photo.swift -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/PhotoCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/PhotoCell.swift -------------------------------------------------------------------------------- /CollectionViewWithMovingItem/PhotosCC.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/CollectionViewWithMovingItem/PhotosCC.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/README.md -------------------------------------------------------------------------------- /_mov.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/frogcjn/UICollectionView-Move-Drag-Item-iOS9/HEAD/_mov.gif --------------------------------------------------------------------------------