├── CollectionViewDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcuserdata │ │ └── lizq.xcuserdatad │ │ └── UserInterfaceState.xcuserstate └── xcuserdata │ └── lizq.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── CollectionViewDemo.xcscheme │ └── xcschememanagement.plist ├── CollectionViewDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── app_add.imageset │ │ ├── Contents.json │ │ └── app_add@2x.png │ ├── app_del.imageset │ │ ├── Contents.json │ │ └── app_del@2x.png │ └── app_ok.imageset │ │ ├── Contents.json │ │ └── app_ok@2x.png ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Cell.h ├── Cell.m ├── Cell.xib ├── CellModel.h ├── CellModel.m ├── CollectionReusableFooterView.h ├── CollectionReusableFooterView.m ├── CollectionReusableHeaderView.h ├── CollectionReusableHeaderView.m ├── DataManager.h ├── DataManager.m ├── DragCellCollectionView.h ├── DragCellCollectionView.m ├── ExternStringDefine.h ├── ExternStringDefine.m ├── Info.plist ├── TitleList.plist ├── ViewController.h ├── ViewController.m └── main.m ├── CollectionViewDemoTests ├── CollectionViewDemoTests.m └── Info.plist ├── CollectionViewDemoUITests ├── CollectionViewDemoUITests.m └── Info.plist ├── README.md └── payDemo.gif /CollectionViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CollectionViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CollectionViewDemo.xcodeproj/project.xcworkspace/xcuserdata/lizq.xcuserdatad/UserInterfaceState.xcuserstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo.xcodeproj/project.xcworkspace/xcuserdata/lizq.xcuserdatad/UserInterfaceState.xcuserstate -------------------------------------------------------------------------------- /CollectionViewDemo.xcodeproj/xcuserdata/lizq.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo.xcodeproj/xcuserdata/lizq.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /CollectionViewDemo.xcodeproj/xcuserdata/lizq.xcuserdatad/xcschemes/CollectionViewDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo.xcodeproj/xcuserdata/lizq.xcuserdatad/xcschemes/CollectionViewDemo.xcscheme -------------------------------------------------------------------------------- /CollectionViewDemo.xcodeproj/xcuserdata/lizq.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo.xcodeproj/xcuserdata/lizq.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /CollectionViewDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/AppDelegate.h -------------------------------------------------------------------------------- /CollectionViewDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/AppDelegate.m -------------------------------------------------------------------------------- /CollectionViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /CollectionViewDemo/Assets.xcassets/app_add.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/Assets.xcassets/app_add.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDemo/Assets.xcassets/app_add.imageset/app_add@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/Assets.xcassets/app_add.imageset/app_add@2x.png -------------------------------------------------------------------------------- /CollectionViewDemo/Assets.xcassets/app_del.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/Assets.xcassets/app_del.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDemo/Assets.xcassets/app_del.imageset/app_del@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/Assets.xcassets/app_del.imageset/app_del@2x.png -------------------------------------------------------------------------------- /CollectionViewDemo/Assets.xcassets/app_ok.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/Assets.xcassets/app_ok.imageset/Contents.json -------------------------------------------------------------------------------- /CollectionViewDemo/Assets.xcassets/app_ok.imageset/app_ok@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/Assets.xcassets/app_ok.imageset/app_ok@2x.png -------------------------------------------------------------------------------- /CollectionViewDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /CollectionViewDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /CollectionViewDemo/Cell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/Cell.h -------------------------------------------------------------------------------- /CollectionViewDemo/Cell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/Cell.m -------------------------------------------------------------------------------- /CollectionViewDemo/Cell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/Cell.xib -------------------------------------------------------------------------------- /CollectionViewDemo/CellModel.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/CellModel.h -------------------------------------------------------------------------------- /CollectionViewDemo/CellModel.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/CellModel.m -------------------------------------------------------------------------------- /CollectionViewDemo/CollectionReusableFooterView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/CollectionReusableFooterView.h -------------------------------------------------------------------------------- /CollectionViewDemo/CollectionReusableFooterView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/CollectionReusableFooterView.m -------------------------------------------------------------------------------- /CollectionViewDemo/CollectionReusableHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/CollectionReusableHeaderView.h -------------------------------------------------------------------------------- /CollectionViewDemo/CollectionReusableHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/CollectionReusableHeaderView.m -------------------------------------------------------------------------------- /CollectionViewDemo/DataManager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/DataManager.h -------------------------------------------------------------------------------- /CollectionViewDemo/DataManager.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/DataManager.m -------------------------------------------------------------------------------- /CollectionViewDemo/DragCellCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/DragCellCollectionView.h -------------------------------------------------------------------------------- /CollectionViewDemo/DragCellCollectionView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/DragCellCollectionView.m -------------------------------------------------------------------------------- /CollectionViewDemo/ExternStringDefine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/ExternStringDefine.h -------------------------------------------------------------------------------- /CollectionViewDemo/ExternStringDefine.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/ExternStringDefine.m -------------------------------------------------------------------------------- /CollectionViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/Info.plist -------------------------------------------------------------------------------- /CollectionViewDemo/TitleList.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/TitleList.plist -------------------------------------------------------------------------------- /CollectionViewDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/ViewController.h -------------------------------------------------------------------------------- /CollectionViewDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/ViewController.m -------------------------------------------------------------------------------- /CollectionViewDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemo/main.m -------------------------------------------------------------------------------- /CollectionViewDemoTests/CollectionViewDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemoTests/CollectionViewDemoTests.m -------------------------------------------------------------------------------- /CollectionViewDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemoTests/Info.plist -------------------------------------------------------------------------------- /CollectionViewDemoUITests/CollectionViewDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemoUITests/CollectionViewDemoUITests.m -------------------------------------------------------------------------------- /CollectionViewDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/CollectionViewDemoUITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/README.md -------------------------------------------------------------------------------- /payDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TwOq/alipayDemo/HEAD/payDemo.gif --------------------------------------------------------------------------------