├── .gitignore ├── Example ├── Example.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── Example │ ├── AppDelegate.swift │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── car.imageset │ │ │ ├── Contents.json │ │ │ └── car.pdf │ │ ├── computer.imageset │ │ │ ├── Contents.json │ │ │ └── computer.pdf │ │ ├── globe_icon.imageset │ │ │ ├── Contents.json │ │ │ ├── globe_icon.png │ │ │ ├── globe_icon@2x.png │ │ │ └── globe_icon@3x.png │ │ └── home.imageset │ │ │ ├── Contents.json │ │ │ └── home.pdf │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ └── ViewController.swift └── ExampleTests │ ├── ExampleTests.swift │ └── Info.plist ├── LICENSE ├── README.md ├── TabbedCollectionView.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcshareddata │ └── xcschemes │ └── TabbedCollectionView.xcscheme ├── TabbedCollectionView ├── HorizontalFlowLayout.swift ├── Info.plist ├── ItemCollectionViewCell.swift ├── ItemCollectionViewCell.xib ├── ItemInfo.swift ├── TabButton.swift ├── TabbedCollectionView.h ├── TabbedCollectionView.swift └── TabbedCollectionView.xib ├── TabbedCollectionViewTests ├── Info.plist └── TabbedCollectionViewTests.swift └── screenshot1.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/.gitignore -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/Example/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example/AppDelegate.swift -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/car.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example/Assets.xcassets/car.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/car.imageset/car.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example/Assets.xcassets/car.imageset/car.pdf -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/computer.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example/Assets.xcassets/computer.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/computer.imageset/computer.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example/Assets.xcassets/computer.imageset/computer.pdf -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/globe_icon.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example/Assets.xcassets/globe_icon.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/globe_icon.imageset/globe_icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example/Assets.xcassets/globe_icon.imageset/globe_icon.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/globe_icon.imageset/globe_icon@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example/Assets.xcassets/globe_icon.imageset/globe_icon@2x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/globe_icon.imageset/globe_icon@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example/Assets.xcassets/globe_icon.imageset/globe_icon@3x.png -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/home.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example/Assets.xcassets/home.imageset/Contents.json -------------------------------------------------------------------------------- /Example/Example/Assets.xcassets/home.imageset/home.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example/Assets.xcassets/home.imageset/home.pdf -------------------------------------------------------------------------------- /Example/Example/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Example/Example/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Example/Example/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example/Info.plist -------------------------------------------------------------------------------- /Example/Example/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/Example/ViewController.swift -------------------------------------------------------------------------------- /Example/ExampleTests/ExampleTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/ExampleTests/ExampleTests.swift -------------------------------------------------------------------------------- /Example/ExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/Example/ExampleTests/Info.plist -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/README.md -------------------------------------------------------------------------------- /TabbedCollectionView.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/TabbedCollectionView.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /TabbedCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/TabbedCollectionView.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /TabbedCollectionView.xcodeproj/xcshareddata/xcschemes/TabbedCollectionView.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/TabbedCollectionView.xcodeproj/xcshareddata/xcschemes/TabbedCollectionView.xcscheme -------------------------------------------------------------------------------- /TabbedCollectionView/HorizontalFlowLayout.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/TabbedCollectionView/HorizontalFlowLayout.swift -------------------------------------------------------------------------------- /TabbedCollectionView/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/TabbedCollectionView/Info.plist -------------------------------------------------------------------------------- /TabbedCollectionView/ItemCollectionViewCell.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/TabbedCollectionView/ItemCollectionViewCell.swift -------------------------------------------------------------------------------- /TabbedCollectionView/ItemCollectionViewCell.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/TabbedCollectionView/ItemCollectionViewCell.xib -------------------------------------------------------------------------------- /TabbedCollectionView/ItemInfo.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/TabbedCollectionView/ItemInfo.swift -------------------------------------------------------------------------------- /TabbedCollectionView/TabButton.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/TabbedCollectionView/TabButton.swift -------------------------------------------------------------------------------- /TabbedCollectionView/TabbedCollectionView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/TabbedCollectionView/TabbedCollectionView.h -------------------------------------------------------------------------------- /TabbedCollectionView/TabbedCollectionView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/TabbedCollectionView/TabbedCollectionView.swift -------------------------------------------------------------------------------- /TabbedCollectionView/TabbedCollectionView.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/TabbedCollectionView/TabbedCollectionView.xib -------------------------------------------------------------------------------- /TabbedCollectionViewTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/TabbedCollectionViewTests/Info.plist -------------------------------------------------------------------------------- /TabbedCollectionViewTests/TabbedCollectionViewTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/TabbedCollectionViewTests/TabbedCollectionViewTests.swift -------------------------------------------------------------------------------- /screenshot1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sprint84/TabbedCollectionView/HEAD/screenshot1.png --------------------------------------------------------------------------------