├── .gitignore ├── .travis.yml ├── LCNCDemo.gif ├── LCNCDemo.png ├── LCNavigationController.podspec ├── LCNavigationController ├── LCNavigationController.h └── LCNavigationController.m ├── LCNavigationControllerDemo.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ ├── Leo.xcuserdatad │ └── xcschemes │ │ ├── LCNavigationControllerDemo.xcscheme │ │ └── xcschememanagement.plist │ └── newuser.xcuserdatad │ └── xcschemes │ ├── LCNavigationControllerDemo.xcscheme │ └── xcschememanagement.plist ├── LCNavigationControllerDemo ├── AppDelegate.h ├── AppDelegate.m ├── Assets.xcassets │ └── AppIcon.appiconset │ │ └── Contents.json ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Info.plist ├── OneVC.h ├── OneVC.m ├── ThreeVC.h ├── ThreeVC.m ├── TwoVC.h ├── TwoVC.m └── main.m ├── LICENSE └── README.md /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/.travis.yml -------------------------------------------------------------------------------- /LCNCDemo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNCDemo.gif -------------------------------------------------------------------------------- /LCNCDemo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNCDemo.png -------------------------------------------------------------------------------- /LCNavigationController.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationController.podspec -------------------------------------------------------------------------------- /LCNavigationController/LCNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationController/LCNavigationController.h -------------------------------------------------------------------------------- /LCNavigationController/LCNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationController/LCNavigationController.m -------------------------------------------------------------------------------- /LCNavigationControllerDemo.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /LCNavigationControllerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /LCNavigationControllerDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/LCNavigationControllerDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/LCNavigationControllerDemo.xcscheme -------------------------------------------------------------------------------- /LCNavigationControllerDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo.xcodeproj/xcuserdata/Leo.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LCNavigationControllerDemo.xcodeproj/xcuserdata/newuser.xcuserdatad/xcschemes/LCNavigationControllerDemo.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo.xcodeproj/xcuserdata/newuser.xcuserdatad/xcschemes/LCNavigationControllerDemo.xcscheme -------------------------------------------------------------------------------- /LCNavigationControllerDemo.xcodeproj/xcuserdata/newuser.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo.xcodeproj/xcuserdata/newuser.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /LCNavigationControllerDemo/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo/AppDelegate.h -------------------------------------------------------------------------------- /LCNavigationControllerDemo/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo/AppDelegate.m -------------------------------------------------------------------------------- /LCNavigationControllerDemo/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /LCNavigationControllerDemo/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /LCNavigationControllerDemo/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /LCNavigationControllerDemo/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo/Info.plist -------------------------------------------------------------------------------- /LCNavigationControllerDemo/OneVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo/OneVC.h -------------------------------------------------------------------------------- /LCNavigationControllerDemo/OneVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo/OneVC.m -------------------------------------------------------------------------------- /LCNavigationControllerDemo/ThreeVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo/ThreeVC.h -------------------------------------------------------------------------------- /LCNavigationControllerDemo/ThreeVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo/ThreeVC.m -------------------------------------------------------------------------------- /LCNavigationControllerDemo/TwoVC.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo/TwoVC.h -------------------------------------------------------------------------------- /LCNavigationControllerDemo/TwoVC.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo/TwoVC.m -------------------------------------------------------------------------------- /LCNavigationControllerDemo/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LCNavigationControllerDemo/main.m -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iTofu/LCNavigationController/HEAD/README.md --------------------------------------------------------------------------------