├── .gitignore ├── .travis.yml ├── Examples ├── .gitignore ├── AppleTVDemo │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── App Icon & Top Shelf Image.brandassets │ │ │ ├── App Icon - Large.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── App Icon - Small.imagestack │ │ │ │ ├── Back.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ ├── Contents.json │ │ │ │ ├── Front.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ │ └── Middle.imagestacklayer │ │ │ │ │ ├── Content.imageset │ │ │ │ │ └── Contents.json │ │ │ │ │ └── Contents.json │ │ │ ├── Contents.json │ │ │ └── Top Shelf Image.imageset │ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── LaunchImage.launchimage │ │ │ └── Contents.json │ ├── Base.lproj │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift ├── RDHCollectionViewGridLayout.xcconfig ├── RDHCollectionViewGridLayout │ └── Info.plist ├── RDHCollectionViewGridLayoutDemo.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ ├── AppleTVDemo.xcscheme │ │ ├── RDHCollectionViewGridLayout.xcscheme │ │ └── RDHCollectionViewGridLayoutDemo.xcscheme ├── RDHCollectionViewGridLayoutDemo │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ └── LaunchImage.launchimage │ │ │ ├── Contents.json │ │ │ ├── Default-568h@2x-1.png │ │ │ ├── Default-568h@2x.png │ │ │ ├── Default.png │ │ │ ├── Default@2x-1.png │ │ │ └── Default@2x.png │ ├── RDHAppDelegate.h │ ├── RDHAppDelegate.m │ ├── RDHCollectionViewGridLayoutDemo-Info.plist │ ├── RDHCollectionViewGridLayoutDemo-Prefix.pch │ ├── RDHDemoCell.h │ ├── RDHDemoCell.m │ ├── RDHDemoViewController.h │ ├── RDHDemoViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m ├── Tests │ ├── Info.plist │ ├── RDHEmptyGridLayoutTests.swift │ ├── RDHGridLayoutTests.m │ ├── RDHStoryboardTests.swift │ ├── TestDataSources.swift │ ├── TestStoryboard.storyboard │ ├── Tests-Bridging-Header.h │ ├── Tests-Prefix.pch │ ├── XCTestCase+Extensions.h │ └── XCTestCase+Extensions.m ├── cartfile └── images │ ├── 5-line, 10-item.png │ ├── horizontal.png │ └── vertical.png ├── LICENSE ├── RDHCollectionViewGridLayout.podspec ├── RDHCollectionViewGridLayout ├── RDHCollectionViewGridLayout.h └── RDHCollectionViewGridLayout.m └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/.travis.yml -------------------------------------------------------------------------------- /Examples/.gitignore: -------------------------------------------------------------------------------- 1 | Carthage 2 | Cartfile.resolved 3 | -------------------------------------------------------------------------------- /Examples/AppleTVDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/AppDelegate.swift -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Large.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Back.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Front.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Content.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/App Icon - Small.imagestack/Middle.imagestacklayer/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/App Icon & Top Shelf Image.brandassets/Top Shelf Image.imageset/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Assets.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Assets.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Examples/AppleTVDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/Info.plist -------------------------------------------------------------------------------- /Examples/AppleTVDemo/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/AppleTVDemo/ViewController.swift -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayout.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayout.xcconfig -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayout/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayout/Info.plist -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo.xcodeproj/xcshareddata/xcschemes/AppleTVDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo.xcodeproj/xcshareddata/xcschemes/AppleTVDemo.xcscheme -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo.xcodeproj/xcshareddata/xcschemes/RDHCollectionViewGridLayout.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo.xcodeproj/xcshareddata/xcschemes/RDHCollectionViewGridLayout.xcscheme -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo.xcodeproj/xcshareddata/xcschemes/RDHCollectionViewGridLayoutDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo.xcodeproj/xcshareddata/xcschemes/RDHCollectionViewGridLayoutDemo.xcscheme -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo/Images.xcassets/LaunchImage.launchimage/Default-568h@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo/Images.xcassets/LaunchImage.launchimage/Default-568h@2x-1.png -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo/Images.xcassets/LaunchImage.launchimage/Default-568h@2x.png -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo/Images.xcassets/LaunchImage.launchimage/Default.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo/Images.xcassets/LaunchImage.launchimage/Default.png -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo/Images.xcassets/LaunchImage.launchimage/Default@2x-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo/Images.xcassets/LaunchImage.launchimage/Default@2x-1.png -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo/Images.xcassets/LaunchImage.launchimage/Default@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo/Images.xcassets/LaunchImage.launchimage/Default@2x.png -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo/RDHAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo/RDHAppDelegate.h -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo/RDHAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo/RDHAppDelegate.m -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo/RDHCollectionViewGridLayoutDemo-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo/RDHCollectionViewGridLayoutDemo-Info.plist -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo/RDHCollectionViewGridLayoutDemo-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo/RDHCollectionViewGridLayoutDemo-Prefix.pch -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo/RDHDemoCell.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo/RDHDemoCell.h -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo/RDHDemoCell.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo/RDHDemoCell.m -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo/RDHDemoViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo/RDHDemoViewController.h -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo/RDHDemoViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo/RDHDemoViewController.m -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Examples/RDHCollectionViewGridLayoutDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/RDHCollectionViewGridLayoutDemo/main.m -------------------------------------------------------------------------------- /Examples/Tests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/Tests/Info.plist -------------------------------------------------------------------------------- /Examples/Tests/RDHEmptyGridLayoutTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/Tests/RDHEmptyGridLayoutTests.swift -------------------------------------------------------------------------------- /Examples/Tests/RDHGridLayoutTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/Tests/RDHGridLayoutTests.m -------------------------------------------------------------------------------- /Examples/Tests/RDHStoryboardTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/Tests/RDHStoryboardTests.swift -------------------------------------------------------------------------------- /Examples/Tests/TestDataSources.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/Tests/TestDataSources.swift -------------------------------------------------------------------------------- /Examples/Tests/TestStoryboard.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/Tests/TestStoryboard.storyboard -------------------------------------------------------------------------------- /Examples/Tests/Tests-Bridging-Header.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/Tests/Tests-Bridging-Header.h -------------------------------------------------------------------------------- /Examples/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Examples/Tests/XCTestCase+Extensions.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/Tests/XCTestCase+Extensions.h -------------------------------------------------------------------------------- /Examples/Tests/XCTestCase+Extensions.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/Tests/XCTestCase+Extensions.m -------------------------------------------------------------------------------- /Examples/cartfile: -------------------------------------------------------------------------------- 1 | github "rhodgkins/RDHCollectionViewGridLayout" "master" 2 | -------------------------------------------------------------------------------- /Examples/images/5-line, 10-item.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/images/5-line, 10-item.png -------------------------------------------------------------------------------- /Examples/images/horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/images/horizontal.png -------------------------------------------------------------------------------- /Examples/images/vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/Examples/images/vertical.png -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/LICENSE -------------------------------------------------------------------------------- /RDHCollectionViewGridLayout.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/RDHCollectionViewGridLayout.podspec -------------------------------------------------------------------------------- /RDHCollectionViewGridLayout/RDHCollectionViewGridLayout.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/RDHCollectionViewGridLayout/RDHCollectionViewGridLayout.h -------------------------------------------------------------------------------- /RDHCollectionViewGridLayout/RDHCollectionViewGridLayout.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/RDHCollectionViewGridLayout/RDHCollectionViewGridLayout.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rhodgkins/RDHCollectionViewGridLayout/HEAD/README.md --------------------------------------------------------------------------------