├── .github └── workflows │ └── objective-c-xcode.yml ├── .gitignore ├── .swift-version ├── .travis.yml ├── CHANGELOG.md ├── Example ├── Podfile ├── Podfile.lock ├── RTRootNavigationController.xcodeproj │ ├── project.pbxproj │ ├── project.xcworkspace │ │ └── contents.xcworkspacedata │ └── xcshareddata │ │ └── xcschemes │ │ └── RTRootNavigationController-Example.xcscheme ├── RTRootNavigationController.xcworkspace │ ├── contents.xcworkspacedata │ └── xcshareddata │ │ └── IDEWorkspaceChecks.plist ├── RTRootNavigationController │ ├── Images.xcassets │ │ ├── AppIcon.appiconset │ │ │ └── Contents.json │ │ ├── Contents.json │ │ ├── LaunchImage.launchimage │ │ │ └── Contents.json │ │ ├── about.imageset │ │ │ ├── Contents.json │ │ │ └── about.pdf │ │ ├── add_user_male.imageset │ │ │ ├── Contents.json │ │ │ └── add_user_male.pdf │ │ ├── apple.imageset │ │ │ ├── Contents.json │ │ │ └── apple@2x.png │ │ └── back.imageset │ │ │ ├── Contents.json │ │ │ └── back.pdf │ ├── Launch.storyboard │ ├── Main.storyboard │ ├── RTAppDelegate.h │ ├── RTAppDelegate.m │ ├── RTCollectionViewController.h │ ├── RTCollectionViewController.m │ ├── RTCustomNavigationBar.h │ ├── RTCustomNavigationBar.m │ ├── RTHideNavigationBarViewController.h │ ├── RTHideNavigationBarViewController.m │ ├── RTItemDetailViewController.h │ ├── RTItemDetailViewController.m │ ├── RTItemListViewController.h │ ├── RTItemListViewController.m │ ├── RTPushRemoveViewController.h │ ├── RTPushRemoveViewController.m │ ├── RTRootNavigationController-Info.plist │ ├── RTRootNavigationController-Prefix.pch │ ├── RTStaticTableViewController.h │ ├── RTStaticTableViewController.m │ ├── RTStatusHiddenViewController.h │ ├── RTStatusHiddenViewController.m │ ├── RTTableViewController.h │ ├── RTTableViewController.m │ ├── RTViewController.h │ ├── RTViewController.m │ ├── RTWebViewController.h │ ├── RTWebViewController.m │ ├── en.lproj │ │ └── InfoPlist.strings │ └── main.m └── Tests │ ├── Tests-Info.plist │ ├── Tests-Prefix.pch │ ├── Tests.m │ └── en.lproj │ └── InfoPlist.strings ├── Gemfile ├── Gemfile.lock ├── LICENSE ├── README.md ├── RTRootNavigationController.podspec ├── RTRootNavigationController ├── Assets │ └── .gitkeep └── Classes │ ├── .gitkeep │ ├── RTRootNavigationController.h │ ├── RTRootNavigationController.m │ ├── RTViewControllerAnimatedTransitioning.h │ ├── UIViewController+RTRootNavigationController.h │ └── UIViewController+RTRootNavigationController.m ├── ScreenShot ├── 1.png └── 2.gif └── _Pods.xcodeproj /.github/workflows/objective-c-xcode.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/.github/workflows/objective-c-xcode.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/.gitignore -------------------------------------------------------------------------------- /.swift-version: -------------------------------------------------------------------------------- 1 | 2.3 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Example/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/Podfile -------------------------------------------------------------------------------- /Example/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/Podfile.lock -------------------------------------------------------------------------------- /Example/RTRootNavigationController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /Example/RTRootNavigationController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/RTRootNavigationController.xcodeproj/xcshareddata/xcschemes/RTRootNavigationController-Example.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController.xcodeproj/xcshareddata/xcschemes/RTRootNavigationController-Example.xcscheme -------------------------------------------------------------------------------- /Example/RTRootNavigationController.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /Example/RTRootNavigationController.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /Example/RTRootNavigationController/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /Example/RTRootNavigationController/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /Example/RTRootNavigationController/Images.xcassets/LaunchImage.launchimage/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/Images.xcassets/LaunchImage.launchimage/Contents.json -------------------------------------------------------------------------------- /Example/RTRootNavigationController/Images.xcassets/about.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/Images.xcassets/about.imageset/Contents.json -------------------------------------------------------------------------------- /Example/RTRootNavigationController/Images.xcassets/about.imageset/about.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/Images.xcassets/about.imageset/about.pdf -------------------------------------------------------------------------------- /Example/RTRootNavigationController/Images.xcassets/add_user_male.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/Images.xcassets/add_user_male.imageset/Contents.json -------------------------------------------------------------------------------- /Example/RTRootNavigationController/Images.xcassets/add_user_male.imageset/add_user_male.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/Images.xcassets/add_user_male.imageset/add_user_male.pdf -------------------------------------------------------------------------------- /Example/RTRootNavigationController/Images.xcassets/apple.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/Images.xcassets/apple.imageset/Contents.json -------------------------------------------------------------------------------- /Example/RTRootNavigationController/Images.xcassets/apple.imageset/apple@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/Images.xcassets/apple.imageset/apple@2x.png -------------------------------------------------------------------------------- /Example/RTRootNavigationController/Images.xcassets/back.imageset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/Images.xcassets/back.imageset/Contents.json -------------------------------------------------------------------------------- /Example/RTRootNavigationController/Images.xcassets/back.imageset/back.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/Images.xcassets/back.imageset/back.pdf -------------------------------------------------------------------------------- /Example/RTRootNavigationController/Launch.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/Launch.storyboard -------------------------------------------------------------------------------- /Example/RTRootNavigationController/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/Main.storyboard -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTAppDelegate.h -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTAppDelegate.m -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTCollectionViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTCollectionViewController.h -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTCollectionViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTCollectionViewController.m -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTCustomNavigationBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTCustomNavigationBar.h -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTCustomNavigationBar.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTCustomNavigationBar.m -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTHideNavigationBarViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTHideNavigationBarViewController.h -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTHideNavigationBarViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTHideNavigationBarViewController.m -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTItemDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTItemDetailViewController.h -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTItemDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTItemDetailViewController.m -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTItemListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTItemListViewController.h -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTItemListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTItemListViewController.m -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTPushRemoveViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTPushRemoveViewController.h -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTPushRemoveViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTPushRemoveViewController.m -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTRootNavigationController-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTRootNavigationController-Info.plist -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTRootNavigationController-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTRootNavigationController-Prefix.pch -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTStaticTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTStaticTableViewController.h -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTStaticTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTStaticTableViewController.m -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTStatusHiddenViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTStatusHiddenViewController.h -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTStatusHiddenViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTStatusHiddenViewController.m -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTTableViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTTableViewController.h -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTTableViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTTableViewController.m -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTViewController.h -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTViewController.m -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTWebViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTWebViewController.h -------------------------------------------------------------------------------- /Example/RTRootNavigationController/RTWebViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/RTWebViewController.m -------------------------------------------------------------------------------- /Example/RTRootNavigationController/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Example/RTRootNavigationController/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/RTRootNavigationController/main.m -------------------------------------------------------------------------------- /Example/Tests/Tests-Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/Tests/Tests-Info.plist -------------------------------------------------------------------------------- /Example/Tests/Tests-Prefix.pch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/Tests/Tests-Prefix.pch -------------------------------------------------------------------------------- /Example/Tests/Tests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Example/Tests/Tests.m -------------------------------------------------------------------------------- /Example/Tests/en.lproj/InfoPlist.strings: -------------------------------------------------------------------------------- 1 | /* Localized versions of Info.plist keys */ 2 | 3 | -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Gemfile -------------------------------------------------------------------------------- /Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/Gemfile.lock -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/README.md -------------------------------------------------------------------------------- /RTRootNavigationController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/RTRootNavigationController.podspec -------------------------------------------------------------------------------- /RTRootNavigationController/Assets/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RTRootNavigationController/Classes/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /RTRootNavigationController/Classes/RTRootNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/RTRootNavigationController/Classes/RTRootNavigationController.h -------------------------------------------------------------------------------- /RTRootNavigationController/Classes/RTRootNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/RTRootNavigationController/Classes/RTRootNavigationController.m -------------------------------------------------------------------------------- /RTRootNavigationController/Classes/RTViewControllerAnimatedTransitioning.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/RTRootNavigationController/Classes/RTViewControllerAnimatedTransitioning.h -------------------------------------------------------------------------------- /RTRootNavigationController/Classes/UIViewController+RTRootNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/RTRootNavigationController/Classes/UIViewController+RTRootNavigationController.h -------------------------------------------------------------------------------- /RTRootNavigationController/Classes/UIViewController+RTRootNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/RTRootNavigationController/Classes/UIViewController+RTRootNavigationController.m -------------------------------------------------------------------------------- /ScreenShot/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/ScreenShot/1.png -------------------------------------------------------------------------------- /ScreenShot/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rickytan/RTRootNavigationController/HEAD/ScreenShot/2.gif -------------------------------------------------------------------------------- /_Pods.xcodeproj: -------------------------------------------------------------------------------- 1 | Example/Pods/Pods.xcodeproj --------------------------------------------------------------------------------