├── .gitignore ├── LICENSE ├── README.md ├── ScrollableGridCollectionView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── Kyle.xcuserdatad │ └── xcschemes │ ├── ScrollableGridCollectionView.xcscheme │ └── xcschememanagement.plist ├── ScrollableGridCollectionView ├── AppDelegate.swift ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── Source │ ├── Controller │ └── View Controller │ │ └── GridCollectionViewController.swift │ ├── Layout │ ├── Attributes │ │ └── ScrollViewSupplementaryLayoutAttributes.swift │ └── Cell Layout │ │ └── GridLayout.swift │ └── View │ ├── Collection View Cell │ └── CollectionViewCell.swift │ └── Supplementary View │ └── ScrollViewSupplementaryView.swift └── demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/README.md -------------------------------------------------------------------------------- /ScrollableGridCollectionView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/ScrollableGridCollectionView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ScrollableGridCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/ScrollableGridCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ScrollableGridCollectionView.xcodeproj/xcuserdata/Kyle.xcuserdatad/xcschemes/ScrollableGridCollectionView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/ScrollableGridCollectionView.xcodeproj/xcuserdata/Kyle.xcuserdatad/xcschemes/ScrollableGridCollectionView.xcscheme -------------------------------------------------------------------------------- /ScrollableGridCollectionView.xcodeproj/xcuserdata/Kyle.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/ScrollableGridCollectionView.xcodeproj/xcuserdata/Kyle.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /ScrollableGridCollectionView/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/ScrollableGridCollectionView/AppDelegate.swift -------------------------------------------------------------------------------- /ScrollableGridCollectionView/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/ScrollableGridCollectionView/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /ScrollableGridCollectionView/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/ScrollableGridCollectionView/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /ScrollableGridCollectionView/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/ScrollableGridCollectionView/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /ScrollableGridCollectionView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/ScrollableGridCollectionView/Info.plist -------------------------------------------------------------------------------- /ScrollableGridCollectionView/Source/Controller/View Controller/GridCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/ScrollableGridCollectionView/Source/Controller/View Controller/GridCollectionViewController.swift -------------------------------------------------------------------------------- /ScrollableGridCollectionView/Source/Layout/Attributes/ScrollViewSupplementaryLayoutAttributes.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/ScrollableGridCollectionView/Source/Layout/Attributes/ScrollViewSupplementaryLayoutAttributes.swift -------------------------------------------------------------------------------- /ScrollableGridCollectionView/Source/Layout/Cell Layout/GridLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/ScrollableGridCollectionView/Source/Layout/Cell Layout/GridLayout.swift -------------------------------------------------------------------------------- /ScrollableGridCollectionView/Source/View/Collection View Cell/CollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/ScrollableGridCollectionView/Source/View/Collection View Cell/CollectionViewCell.swift -------------------------------------------------------------------------------- /ScrollableGridCollectionView/Source/View/Supplementary View/ScrollViewSupplementaryView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/ScrollableGridCollectionView/Source/View/Supplementary View/ScrollViewSupplementaryView.swift -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/popwarsweet/ScrollableGridCollectionView/HEAD/demo.gif --------------------------------------------------------------------------------