├── .gitignore ├── LICENSE ├── README.md ├── Screenshots ├── ZMScrollableNavigationBarScreenshot_0.png └── ZMScrollableNavigationBarScreenshot_1.png ├── Test Project ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.xib │ └── Main.storyboard ├── Images.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── WheresWallyAtWembley_6.imageset │ │ ├── Contents.json │ │ └── WheresWallyAtWembley_6.jpg ├── Info.plist ├── PresentedViewController.h ├── PresentedViewController.m ├── PushedViewController.h ├── PushedViewController.m ├── ViewController.h ├── ViewController.m └── main.m ├── ZMScrollableNavigationBar.podspec ├── ZMScrollableNavigationBar.xcodeproj ├── project.pbxproj └── project.xcworkspace │ └── contents.xcworkspacedata └── ZMScrollableNavigationBar ├── UINavigationController+ZMScrollable.h └── UINavigationController+ZMScrollable.m /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/README.md -------------------------------------------------------------------------------- /Screenshots/ZMScrollableNavigationBarScreenshot_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/Screenshots/ZMScrollableNavigationBarScreenshot_0.png -------------------------------------------------------------------------------- /Screenshots/ZMScrollableNavigationBarScreenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/Screenshots/ZMScrollableNavigationBarScreenshot_1.png -------------------------------------------------------------------------------- /Test Project/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/Test Project/AppDelegate.h -------------------------------------------------------------------------------- /Test Project/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/Test Project/AppDelegate.m -------------------------------------------------------------------------------- /Test Project/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/Test Project/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /Test Project/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/Test Project/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /Test Project/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/Test Project/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Test Project/Images.xcassets/WheresWallyAtWembley_6.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/Test Project/Images.xcassets/WheresWallyAtWembley_6.imageset/Contents.json -------------------------------------------------------------------------------- /Test Project/Images.xcassets/WheresWallyAtWembley_6.imageset/WheresWallyAtWembley_6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/Test Project/Images.xcassets/WheresWallyAtWembley_6.imageset/WheresWallyAtWembley_6.jpg -------------------------------------------------------------------------------- /Test Project/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/Test Project/Info.plist -------------------------------------------------------------------------------- /Test Project/PresentedViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/Test Project/PresentedViewController.h -------------------------------------------------------------------------------- /Test Project/PresentedViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/Test Project/PresentedViewController.m -------------------------------------------------------------------------------- /Test Project/PushedViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/Test Project/PushedViewController.h -------------------------------------------------------------------------------- /Test Project/PushedViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/Test Project/PushedViewController.m -------------------------------------------------------------------------------- /Test Project/ViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/Test Project/ViewController.h -------------------------------------------------------------------------------- /Test Project/ViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/Test Project/ViewController.m -------------------------------------------------------------------------------- /Test Project/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/Test Project/main.m -------------------------------------------------------------------------------- /ZMScrollableNavigationBar.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/ZMScrollableNavigationBar.podspec -------------------------------------------------------------------------------- /ZMScrollableNavigationBar.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/ZMScrollableNavigationBar.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /ZMScrollableNavigationBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/ZMScrollableNavigationBar.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /ZMScrollableNavigationBar/UINavigationController+ZMScrollable.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/ZMScrollableNavigationBar/UINavigationController+ZMScrollable.h -------------------------------------------------------------------------------- /ZMScrollableNavigationBar/UINavigationController+ZMScrollable.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dailymotion/ZMScrollableNavigationBar/HEAD/ZMScrollableNavigationBar/UINavigationController+ZMScrollable.m --------------------------------------------------------------------------------