├── HidesNavigationBarWhenPushed.podspec ├── HidesNavigationBarWhenPushed ├── NavigationBar.swift ├── NavigationController.swift └── ViewController.swift ├── HidesNavigationBarWhenPushed1.gif ├── HidesNavigationBarWhenPushed2.gif ├── HidesNavigationBarWhenPushed3.gif ├── HidesNavigationBarWhenPushedExample.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist └── xcuserdata │ └── danilgontovnik.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ └── xcschememanagement.plist ├── HidesNavigationBarWhenPushedExample ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist └── MainViewController.swift ├── LICENSE └── README.md /HidesNavigationBarWhenPushed.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushed.podspec -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushed/NavigationBar.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushed/NavigationBar.swift -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushed/NavigationController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushed/NavigationController.swift -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushed/ViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushed/ViewController.swift -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushed1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushed1.gif -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushed2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushed2.gif -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushed3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushed3.gif -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushedExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushedExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushedExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushedExample.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushedExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushedExample.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushedExample.xcodeproj/xcuserdata/danilgontovnik.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushedExample.xcodeproj/xcuserdata/danilgontovnik.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushedExample.xcodeproj/xcuserdata/danilgontovnik.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushedExample.xcodeproj/xcuserdata/danilgontovnik.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushedExample/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushedExample/AppDelegate.swift -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushedExample/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushedExample/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushedExample/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushedExample/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushedExample/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushedExample/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushedExample/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushedExample/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushedExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushedExample/Info.plist -------------------------------------------------------------------------------- /HidesNavigationBarWhenPushedExample/MainViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/HidesNavigationBarWhenPushedExample/MainViewController.swift -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gontovnik/HidesNavigationBarWhenPushed/HEAD/README.md --------------------------------------------------------------------------------