├── .gitignore ├── .travis.yml ├── Demo ├── MGCollapsingHeaderDemo.xcodeproj │ ├── project.pbxproj │ └── project.xcworkspace │ │ └── contents.xcworkspacedata ├── MGCollapsingHeaderDemo.xcworkspace │ └── contents.xcworkspacedata ├── MGCollapsingHeaderDemo │ ├── AppDelegate.h │ ├── AppDelegate.m │ ├── Assets.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ └── mountain.imageset │ │ │ ├── Contents.json │ │ │ └── mountain@2x.jpg │ ├── Base.lproj │ │ ├── LaunchScreen.storyboard │ │ └── Main.storyboard │ ├── Info.plist │ ├── ViewController.h │ ├── ViewController.m │ └── main.m ├── Podfile ├── Podfile.lock └── Pods │ ├── Headers │ ├── Private │ │ └── MGCollapsingHeader │ │ │ └── MGCollapsingHeaderView.h │ └── Public │ │ └── MGCollapsingHeader │ │ └── MGCollapsingHeaderView.h │ ├── Local Podspecs │ └── MGCollapsingHeader.podspec.json │ ├── MGCollapsingHeader │ ├── LICENSE │ ├── MGCollapsingHeader │ │ ├── MGCollapsingHeaderView.h │ │ └── MGCollapsingHeaderView.m │ └── README.md │ ├── Manifest.lock │ ├── Pods.xcodeproj │ └── project.pbxproj │ └── Target Support Files │ ├── MGCollapsingHeader │ ├── MGCollapsingHeader-dummy.m │ ├── MGCollapsingHeader-prefix.pch │ └── MGCollapsingHeader.xcconfig │ └── Pods │ ├── Pods-acknowledgements.markdown │ ├── Pods-acknowledgements.plist │ ├── Pods-dummy.m │ ├── Pods-frameworks.sh │ ├── Pods-resources.sh │ ├── Pods.debug.xcconfig │ └── Pods.release.xcconfig ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── MGCollapsingHeader.podspec ├── MGCollapsingHeader ├── MGCollapsingHeaderView.h └── MGCollapsingHeaderView.m ├── README.md └── Screenshots └── mgch_demo.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/.travis.yml -------------------------------------------------------------------------------- /Demo/MGCollapsingHeaderDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/MGCollapsingHeaderDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/MGCollapsingHeaderDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/MGCollapsingHeaderDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/MGCollapsingHeaderDemo.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/MGCollapsingHeaderDemo.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Demo/MGCollapsingHeaderDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/MGCollapsingHeaderDemo/AppDelegate.h -------------------------------------------------------------------------------- /Demo/MGCollapsingHeaderDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/MGCollapsingHeaderDemo/AppDelegate.m -------------------------------------------------------------------------------- /Demo/MGCollapsingHeaderDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/MGCollapsingHeaderDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Demo/MGCollapsingHeaderDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/MGCollapsingHeaderDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /Demo/MGCollapsingHeaderDemo/Assets.xcassets/mountain.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/MGCollapsingHeaderDemo/Assets.xcassets/mountain.imageset/Contents.json -------------------------------------------------------------------------------- /Demo/MGCollapsingHeaderDemo/Assets.xcassets/mountain.imageset/mountain@2x.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/MGCollapsingHeaderDemo/Assets.xcassets/mountain.imageset/mountain@2x.jpg -------------------------------------------------------------------------------- /Demo/MGCollapsingHeaderDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/MGCollapsingHeaderDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /Demo/MGCollapsingHeaderDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/MGCollapsingHeaderDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Demo/MGCollapsingHeaderDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/MGCollapsingHeaderDemo/Info.plist -------------------------------------------------------------------------------- /Demo/MGCollapsingHeaderDemo/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/MGCollapsingHeaderDemo/ViewController.h -------------------------------------------------------------------------------- /Demo/MGCollapsingHeaderDemo/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/MGCollapsingHeaderDemo/ViewController.m -------------------------------------------------------------------------------- /Demo/MGCollapsingHeaderDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/MGCollapsingHeaderDemo/main.m -------------------------------------------------------------------------------- /Demo/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Podfile -------------------------------------------------------------------------------- /Demo/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Podfile.lock -------------------------------------------------------------------------------- /Demo/Pods/Headers/Private/MGCollapsingHeader/MGCollapsingHeaderView.h: -------------------------------------------------------------------------------- 1 | ../../../MGCollapsingHeader/MGCollapsingHeader/MGCollapsingHeaderView.h -------------------------------------------------------------------------------- /Demo/Pods/Headers/Public/MGCollapsingHeader/MGCollapsingHeaderView.h: -------------------------------------------------------------------------------- 1 | ../../../MGCollapsingHeader/MGCollapsingHeader/MGCollapsingHeaderView.h -------------------------------------------------------------------------------- /Demo/Pods/Local Podspecs/MGCollapsingHeader.podspec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Pods/Local Podspecs/MGCollapsingHeader.podspec.json -------------------------------------------------------------------------------- /Demo/Pods/MGCollapsingHeader/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Pods/MGCollapsingHeader/LICENSE -------------------------------------------------------------------------------- /Demo/Pods/MGCollapsingHeader/MGCollapsingHeader/MGCollapsingHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Pods/MGCollapsingHeader/MGCollapsingHeader/MGCollapsingHeaderView.h -------------------------------------------------------------------------------- /Demo/Pods/MGCollapsingHeader/MGCollapsingHeader/MGCollapsingHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Pods/MGCollapsingHeader/MGCollapsingHeader/MGCollapsingHeaderView.m -------------------------------------------------------------------------------- /Demo/Pods/MGCollapsingHeader/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Pods/MGCollapsingHeader/README.md -------------------------------------------------------------------------------- /Demo/Pods/Manifest.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Pods/Manifest.lock -------------------------------------------------------------------------------- /Demo/Pods/Pods.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Pods/Pods.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/MGCollapsingHeader/MGCollapsingHeader-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Pods/Target Support Files/MGCollapsingHeader/MGCollapsingHeader-dummy.m -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/MGCollapsingHeader/MGCollapsingHeader-prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Pods/Target Support Files/MGCollapsingHeader/MGCollapsingHeader-prefix.pch -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/MGCollapsingHeader/MGCollapsingHeader.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Pods/Target Support Files/MGCollapsingHeader/MGCollapsingHeader.xcconfig -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Pods/Target Support Files/Pods/Pods-acknowledgements.markdown -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods-acknowledgements.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Pods/Target Support Files/Pods/Pods-acknowledgements.plist -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods-dummy.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Pods/Target Support Files/Pods/Pods-dummy.m -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods-frameworks.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Pods/Target Support Files/Pods/Pods-frameworks.sh -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods-resources.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Pods/Target Support Files/Pods/Pods-resources.sh -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods.debug.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Pods/Target Support Files/Pods/Pods.debug.xcconfig -------------------------------------------------------------------------------- /Demo/Pods/Target Support Files/Pods/Pods.release.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Demo/Pods/Target Support Files/Pods/Pods.release.xcconfig -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- 1 | source 'http://rubygems.org' 2 | 3 | gem 'cocoapods' -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/LICENSE -------------------------------------------------------------------------------- /MGCollapsingHeader.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/MGCollapsingHeader.podspec -------------------------------------------------------------------------------- /MGCollapsingHeader/MGCollapsingHeaderView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/MGCollapsingHeader/MGCollapsingHeaderView.h -------------------------------------------------------------------------------- /MGCollapsingHeader/MGCollapsingHeaderView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/MGCollapsingHeader/MGCollapsingHeaderView.m -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/mgch_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mattga/MGCollapsingHeader/HEAD/Screenshots/mgch_demo.gif --------------------------------------------------------------------------------