├── .gitignore ├── .swift-version ├── .travis.yml ├── LICENSE ├── NavigationBarHelper.xcodeproj ├── project.pbxproj └── project.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ └── IDEWorkspaceChecks.plist ├── NavigationBarHelper ├── Info.plist ├── NavigationBarBackgroundHelper.h ├── NavigationBarBackgroundView.swift ├── NavigationBarHelper+AttrRestoration.swift ├── NavigationBarHelper.swift ├── UINavigationBar+Swizzle.swift ├── UIViewController+Swizzle.swift └── Utilities.swift ├── NavigationBarHelperDemo ├── AccountViewController.swift ├── AppDelegate.swift ├── Assets.xcassets │ ├── AppIcon.appiconset │ │ └── Contents.json │ ├── Contents.json │ ├── avatar.imageset │ │ ├── Contents.json │ │ └── d443839ccaa5d102b747709c8864ad4c.jpeg │ ├── bar_background.imageset │ │ ├── Contents.json │ │ └── DX-20180309@2x.png │ ├── star_sky.imageset │ │ ├── Contents.json │ │ └── DX-20180308@2x.png │ └── timeline.imageset │ │ ├── Contents.json │ │ └── timeline.jpg ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── HideNavigationBarViewController.swift ├── HomeViewController.swift ├── Info.plist ├── ListViewController.swift ├── SetViewController.swift └── TimelineViewController.swift ├── Package.swift ├── PopInterrupter ├── UINavigationController+Swizzle.swift └── UIViewController+PopInterrupter.swift ├── README.md └── screenshot.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 5.0 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/LICENSE -------------------------------------------------------------------------------- /NavigationBarHelper.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelper.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /NavigationBarHelper.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelper.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /NavigationBarHelper.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelper.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /NavigationBarHelper/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelper/Info.plist -------------------------------------------------------------------------------- /NavigationBarHelper/NavigationBarBackgroundHelper.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelper/NavigationBarBackgroundHelper.h -------------------------------------------------------------------------------- /NavigationBarHelper/NavigationBarBackgroundView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelper/NavigationBarBackgroundView.swift -------------------------------------------------------------------------------- /NavigationBarHelper/NavigationBarHelper+AttrRestoration.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelper/NavigationBarHelper+AttrRestoration.swift -------------------------------------------------------------------------------- /NavigationBarHelper/NavigationBarHelper.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelper/NavigationBarHelper.swift -------------------------------------------------------------------------------- /NavigationBarHelper/UINavigationBar+Swizzle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelper/UINavigationBar+Swizzle.swift -------------------------------------------------------------------------------- /NavigationBarHelper/UIViewController+Swizzle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelper/UIViewController+Swizzle.swift -------------------------------------------------------------------------------- /NavigationBarHelper/Utilities.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelper/Utilities.swift -------------------------------------------------------------------------------- /NavigationBarHelperDemo/AccountViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/AccountViewController.swift -------------------------------------------------------------------------------- /NavigationBarHelperDemo/AppDelegate.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/AppDelegate.swift -------------------------------------------------------------------------------- /NavigationBarHelperDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /NavigationBarHelperDemo/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /NavigationBarHelperDemo/Assets.xcassets/avatar.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/Assets.xcassets/avatar.imageset/Contents.json -------------------------------------------------------------------------------- /NavigationBarHelperDemo/Assets.xcassets/avatar.imageset/d443839ccaa5d102b747709c8864ad4c.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/Assets.xcassets/avatar.imageset/d443839ccaa5d102b747709c8864ad4c.jpeg -------------------------------------------------------------------------------- /NavigationBarHelperDemo/Assets.xcassets/bar_background.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/Assets.xcassets/bar_background.imageset/Contents.json -------------------------------------------------------------------------------- /NavigationBarHelperDemo/Assets.xcassets/bar_background.imageset/DX-20180309@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/Assets.xcassets/bar_background.imageset/DX-20180309@2x.png -------------------------------------------------------------------------------- /NavigationBarHelperDemo/Assets.xcassets/star_sky.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/Assets.xcassets/star_sky.imageset/Contents.json -------------------------------------------------------------------------------- /NavigationBarHelperDemo/Assets.xcassets/star_sky.imageset/DX-20180308@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/Assets.xcassets/star_sky.imageset/DX-20180308@2x.png -------------------------------------------------------------------------------- /NavigationBarHelperDemo/Assets.xcassets/timeline.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/Assets.xcassets/timeline.imageset/Contents.json -------------------------------------------------------------------------------- /NavigationBarHelperDemo/Assets.xcassets/timeline.imageset/timeline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/Assets.xcassets/timeline.imageset/timeline.jpg -------------------------------------------------------------------------------- /NavigationBarHelperDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /NavigationBarHelperDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /NavigationBarHelperDemo/HideNavigationBarViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/HideNavigationBarViewController.swift -------------------------------------------------------------------------------- /NavigationBarHelperDemo/HomeViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/HomeViewController.swift -------------------------------------------------------------------------------- /NavigationBarHelperDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/Info.plist -------------------------------------------------------------------------------- /NavigationBarHelperDemo/ListViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/ListViewController.swift -------------------------------------------------------------------------------- /NavigationBarHelperDemo/SetViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/SetViewController.swift -------------------------------------------------------------------------------- /NavigationBarHelperDemo/TimelineViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/NavigationBarHelperDemo/TimelineViewController.swift -------------------------------------------------------------------------------- /Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/Package.swift -------------------------------------------------------------------------------- /PopInterrupter/UINavigationController+Swizzle.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/PopInterrupter/UINavigationController+Swizzle.swift -------------------------------------------------------------------------------- /PopInterrupter/UIViewController+PopInterrupter.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/PopInterrupter/UIViewController+PopInterrupter.swift -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/README.md -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Jerry0523/NavigationBarHelper/HEAD/screenshot.gif --------------------------------------------------------------------------------