├── HQCollectionViewDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── jkdzkj.xcuserdatad │ └── xcschemes │ └── xcschememanagement.plist ├── HQCollectionViewDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── HQCollectionViewFlowLayout.h ├── HQCollectionViewFlowLayout.m ├── HQTopStopView.h ├── HQTopStopView.m ├── HQViewController.h ├── HQViewController.m ├── Info.plist ├── ViewController.h ├── ViewController.m ├── main.m └── 悬停.gif ├── HQCollectionViewDemoTests ├── HQCollectionViewDemoTests.m └── Info.plist ├── HQCollectionViewDemoUITests ├── HQCollectionViewDemoUITests.m └── Info.plist └── README.md /HQCollectionViewDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HQCollectionViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HQCollectionViewDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /HQCollectionViewDemo.xcodeproj/xcuserdata/jkdzkj.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo.xcodeproj/xcuserdata/jkdzkj.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HQCollectionViewDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo/AppDelegate.h -------------------------------------------------------------------------------- /HQCollectionViewDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo/AppDelegate.m -------------------------------------------------------------------------------- /HQCollectionViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HQCollectionViewDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HQCollectionViewDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HQCollectionViewDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HQCollectionViewDemo/HQCollectionViewFlowLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo/HQCollectionViewFlowLayout.h -------------------------------------------------------------------------------- /HQCollectionViewDemo/HQCollectionViewFlowLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo/HQCollectionViewFlowLayout.m -------------------------------------------------------------------------------- /HQCollectionViewDemo/HQTopStopView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo/HQTopStopView.h -------------------------------------------------------------------------------- /HQCollectionViewDemo/HQTopStopView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo/HQTopStopView.m -------------------------------------------------------------------------------- /HQCollectionViewDemo/HQViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo/HQViewController.h -------------------------------------------------------------------------------- /HQCollectionViewDemo/HQViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo/HQViewController.m -------------------------------------------------------------------------------- /HQCollectionViewDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo/Info.plist -------------------------------------------------------------------------------- /HQCollectionViewDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo/ViewController.h -------------------------------------------------------------------------------- /HQCollectionViewDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo/ViewController.m -------------------------------------------------------------------------------- /HQCollectionViewDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo/main.m -------------------------------------------------------------------------------- /HQCollectionViewDemo/悬停.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemo/悬停.gif -------------------------------------------------------------------------------- /HQCollectionViewDemoTests/HQCollectionViewDemoTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemoTests/HQCollectionViewDemoTests.m -------------------------------------------------------------------------------- /HQCollectionViewDemoTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemoTests/Info.plist -------------------------------------------------------------------------------- /HQCollectionViewDemoUITests/HQCollectionViewDemoUITests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemoUITests/HQCollectionViewDemoUITests.m -------------------------------------------------------------------------------- /HQCollectionViewDemoUITests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/HQCollectionViewDemoUITests/Info.plist -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/HanQiGod/HQCollectionViewDemo/HEAD/README.md --------------------------------------------------------------------------------