gitextract_0jr27f1c/ ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CODEOWNERS ├── CampcotCollectionView.podspec ├── CampcotCollectionView.xcodeproj/ │ ├── project.pbxproj │ ├── project.xcworkspace/ │ │ └── contents.xcworkspacedata │ └── xcshareddata/ │ └── xcschemes/ │ └── CampcotCollectionView.xcscheme ├── CampcotCollectionView.xcworkspace/ │ ├── contents.xcworkspacedata │ └── xcshareddata/ │ ├── IDEWorkspaceChecks.plist │ └── WorkspaceSettings.xcsettings ├── Example/ │ ├── Example.xcodeproj/ │ │ ├── project.pbxproj │ │ ├── project.xcworkspace/ │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata/ │ │ │ └── IDEWorkspaceChecks.plist │ │ └── xcshareddata/ │ │ └── xcschemes/ │ │ └── Example.xcscheme │ └── Source/ │ ├── AppDelegate.swift │ ├── CustomCollectionViewCell.swift │ ├── CustomHeaderView.swift │ ├── Images.xcassets/ │ │ ├── AppIcon.appiconset/ │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── logo.imageset/ │ │ │ └── Contents.json │ │ └── logo_splash.imageset/ │ │ └── Contents.json │ ├── Launch Screen.storyboard │ ├── Main.storyboard │ ├── StoryboardViewController.swift │ ├── Supporting Files/ │ │ └── Info.plist │ └── ViewController.swift ├── LICENSE ├── README.md ├── Source/ │ ├── CampcotCollectionView.swift │ ├── CollapsedLayout.swift │ ├── ContentSizeAdjustmentBehavior.swift │ ├── ExpandedLayout.swift │ └── Supporting Files/ │ ├── CampcotCollectionView.h │ └── Info.plist ├── Tests/ │ ├── CampcotCollectionViewTests.swift │ └── Supporting Files/ │ └── Info.plist └── scripts/ └── deploy.sh