├── .gitignore ├── .swift-version ├── AppStoreCollectionViewLayout-Demo ├── AppDelegate.swift ├── AppStoreCollectionViewLayout-Demo-Bridging-Header.h ├── AppStoreCollectionViewLayoutDemoViewController.swift ├── Apps.plist ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── CustomItemSizeDemoCollectionViewController.swift └── Info.plist ├── CollectionViewShelfLayout.podspec ├── CollectionViewShelfLayout.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcshareddata │ └── xcschemes │ └── AppStoreCollectionViewLayout.xcscheme ├── CollectionViewShelfLayout ├── CollectionViewShelfLayout.h ├── CollectionViewShelfLayout.swift └── Info.plist ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 2 | -------------------------------------------------------------------------------- /AppStoreCollectionViewLayout-Demo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/AppStoreCollectionViewLayout-Demo/AppDelegate.swift -------------------------------------------------------------------------------- /AppStoreCollectionViewLayout-Demo/AppStoreCollectionViewLayout-Demo-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/AppStoreCollectionViewLayout-Demo/AppStoreCollectionViewLayout-Demo-Bridging-Header.h -------------------------------------------------------------------------------- /AppStoreCollectionViewLayout-Demo/AppStoreCollectionViewLayoutDemoViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/AppStoreCollectionViewLayout-Demo/AppStoreCollectionViewLayoutDemoViewController.swift -------------------------------------------------------------------------------- /AppStoreCollectionViewLayout-Demo/Apps.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/AppStoreCollectionViewLayout-Demo/Apps.plist -------------------------------------------------------------------------------- /AppStoreCollectionViewLayout-Demo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/AppStoreCollectionViewLayout-Demo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /AppStoreCollectionViewLayout-Demo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/AppStoreCollectionViewLayout-Demo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /AppStoreCollectionViewLayout-Demo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/AppStoreCollectionViewLayout-Demo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /AppStoreCollectionViewLayout-Demo/CustomItemSizeDemoCollectionViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/AppStoreCollectionViewLayout-Demo/CustomItemSizeDemoCollectionViewController.swift -------------------------------------------------------------------------------- /AppStoreCollectionViewLayout-Demo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/AppStoreCollectionViewLayout-Demo/Info.plist -------------------------------------------------------------------------------- /CollectionViewShelfLayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/CollectionViewShelfLayout.podspec -------------------------------------------------------------------------------- /CollectionViewShelfLayout.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/CollectionViewShelfLayout.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /CollectionViewShelfLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/CollectionViewShelfLayout.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /CollectionViewShelfLayout.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/CollectionViewShelfLayout.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /CollectionViewShelfLayout.xcodeproj/xcshareddata/xcschemes/AppStoreCollectionViewLayout.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/CollectionViewShelfLayout.xcodeproj/xcshareddata/xcschemes/AppStoreCollectionViewLayout.xcscheme -------------------------------------------------------------------------------- /CollectionViewShelfLayout/CollectionViewShelfLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/CollectionViewShelfLayout/CollectionViewShelfLayout.h -------------------------------------------------------------------------------- /CollectionViewShelfLayout/CollectionViewShelfLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/CollectionViewShelfLayout/CollectionViewShelfLayout.swift -------------------------------------------------------------------------------- /CollectionViewShelfLayout/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/CollectionViewShelfLayout/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pitiphong-p/CollectionViewShelfLayout/HEAD/README.md --------------------------------------------------------------------------------