├── .gitignore ├── GifAndImage ├── YNNavigationControllerScaleGif.gif └── YNNavigationControllerSliderGif.gif ├── LICENSE ├── README.md ├── YNNavigationController.xcodeproj ├── project.pbxproj ├── project.xcworkspace │ └── contents.xcworkspacedata └── xcuserdata │ └── zyn.xcuserdatad │ ├── xcdebugger │ └── Breakpoints_v2.xcbkptlist │ └── xcschemes │ ├── YNNavigationController.xcscheme │ └── xcschememanagement.plist ├── YNNavigationController ├── AppDelegate.h ├── AppDelegate.m ├── Base.lproj │ ├── LaunchScreen.storyboard │ └── Main.storyboard ├── Demo │ ├── BaseViewController.h │ ├── BaseViewController.m │ ├── Discover(发现) │ │ ├── DiscoverGoodProduct(发现好商品) │ │ │ └── GoodShare(商品分享) │ │ │ │ ├── GoodsShareViewController.h │ │ │ │ └── GoodsShareViewController.m │ │ ├── DiscoverViewController.h │ │ └── DiscoverViewController.m │ ├── Home(首页) │ │ ├── HomeViewController.h │ │ ├── HomeViewController.m │ │ └── ProductList(商品列表) │ │ │ ├── ProductDetail(商品详情) │ │ │ ├── AddressDetail(详细地址) │ │ │ │ ├── ProductAddressDetailViewController.h │ │ │ │ └── ProductAddressDetailViewController.m │ │ │ ├── ProductDetailViewController.h │ │ │ └── ProductDetailViewController.m │ │ │ ├── ProductListViewController.h │ │ │ └── ProductListViewController.m │ ├── TestNavigationController.h │ └── TestNavigationController.m ├── Info.plist ├── Libs │ └── YNNavigationController │ │ ├── NSObject+YNAssociateObject.h │ │ ├── NSObject+YNAssociateObject.m │ │ ├── UIViewController+YNNavigationViewController.h │ │ ├── UIViewController+YNNavigationViewController.m │ │ ├── YNNavigationController.h │ │ ├── YNNavigationController.m │ │ ├── YNScreenShotView.h │ │ └── YNScreenShotView.m ├── back-@2x.png ├── back-@3x.png └── main.m └── iOSInjectionProject └── x86_64 └── identity.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/.gitignore -------------------------------------------------------------------------------- /GifAndImage/YNNavigationControllerScaleGif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/GifAndImage/YNNavigationControllerScaleGif.gif -------------------------------------------------------------------------------- /GifAndImage/YNNavigationControllerSliderGif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/GifAndImage/YNNavigationControllerSliderGif.gif -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/README.md -------------------------------------------------------------------------------- /YNNavigationController.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /YNNavigationController.xcodeproj/project.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController.xcodeproj/project.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /YNNavigationController.xcodeproj/xcuserdata/zyn.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController.xcodeproj/xcuserdata/zyn.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist -------------------------------------------------------------------------------- /YNNavigationController.xcodeproj/xcuserdata/zyn.xcuserdatad/xcschemes/YNNavigationController.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController.xcodeproj/xcuserdata/zyn.xcuserdatad/xcschemes/YNNavigationController.xcscheme -------------------------------------------------------------------------------- /YNNavigationController.xcodeproj/xcuserdata/zyn.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController.xcodeproj/xcuserdata/zyn.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /YNNavigationController/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/AppDelegate.h -------------------------------------------------------------------------------- /YNNavigationController/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/AppDelegate.m -------------------------------------------------------------------------------- /YNNavigationController/Base.lproj/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Base.lproj/LaunchScreen.storyboard -------------------------------------------------------------------------------- /YNNavigationController/Base.lproj/Main.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Base.lproj/Main.storyboard -------------------------------------------------------------------------------- /YNNavigationController/Demo/BaseViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Demo/BaseViewController.h -------------------------------------------------------------------------------- /YNNavigationController/Demo/BaseViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Demo/BaseViewController.m -------------------------------------------------------------------------------- /YNNavigationController/Demo/Discover(发现)/DiscoverGoodProduct(发现好商品)/GoodShare(商品分享)/GoodsShareViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Demo/Discover(发现)/DiscoverGoodProduct(发现好商品)/GoodShare(商品分享)/GoodsShareViewController.h -------------------------------------------------------------------------------- /YNNavigationController/Demo/Discover(发现)/DiscoverGoodProduct(发现好商品)/GoodShare(商品分享)/GoodsShareViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Demo/Discover(发现)/DiscoverGoodProduct(发现好商品)/GoodShare(商品分享)/GoodsShareViewController.m -------------------------------------------------------------------------------- /YNNavigationController/Demo/Discover(发现)/DiscoverViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Demo/Discover(发现)/DiscoverViewController.h -------------------------------------------------------------------------------- /YNNavigationController/Demo/Discover(发现)/DiscoverViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Demo/Discover(发现)/DiscoverViewController.m -------------------------------------------------------------------------------- /YNNavigationController/Demo/Home(首页)/HomeViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Demo/Home(首页)/HomeViewController.h -------------------------------------------------------------------------------- /YNNavigationController/Demo/Home(首页)/HomeViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Demo/Home(首页)/HomeViewController.m -------------------------------------------------------------------------------- /YNNavigationController/Demo/Home(首页)/ProductList(商品列表)/ProductDetail(商品详情)/AddressDetail(详细地址)/ProductAddressDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Demo/Home(首页)/ProductList(商品列表)/ProductDetail(商品详情)/AddressDetail(详细地址)/ProductAddressDetailViewController.h -------------------------------------------------------------------------------- /YNNavigationController/Demo/Home(首页)/ProductList(商品列表)/ProductDetail(商品详情)/AddressDetail(详细地址)/ProductAddressDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Demo/Home(首页)/ProductList(商品列表)/ProductDetail(商品详情)/AddressDetail(详细地址)/ProductAddressDetailViewController.m -------------------------------------------------------------------------------- /YNNavigationController/Demo/Home(首页)/ProductList(商品列表)/ProductDetail(商品详情)/ProductDetailViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Demo/Home(首页)/ProductList(商品列表)/ProductDetail(商品详情)/ProductDetailViewController.h -------------------------------------------------------------------------------- /YNNavigationController/Demo/Home(首页)/ProductList(商品列表)/ProductDetail(商品详情)/ProductDetailViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Demo/Home(首页)/ProductList(商品列表)/ProductDetail(商品详情)/ProductDetailViewController.m -------------------------------------------------------------------------------- /YNNavigationController/Demo/Home(首页)/ProductList(商品列表)/ProductListViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Demo/Home(首页)/ProductList(商品列表)/ProductListViewController.h -------------------------------------------------------------------------------- /YNNavigationController/Demo/Home(首页)/ProductList(商品列表)/ProductListViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Demo/Home(首页)/ProductList(商品列表)/ProductListViewController.m -------------------------------------------------------------------------------- /YNNavigationController/Demo/TestNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Demo/TestNavigationController.h -------------------------------------------------------------------------------- /YNNavigationController/Demo/TestNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Demo/TestNavigationController.m -------------------------------------------------------------------------------- /YNNavigationController/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Info.plist -------------------------------------------------------------------------------- /YNNavigationController/Libs/YNNavigationController/NSObject+YNAssociateObject.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Libs/YNNavigationController/NSObject+YNAssociateObject.h -------------------------------------------------------------------------------- /YNNavigationController/Libs/YNNavigationController/NSObject+YNAssociateObject.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Libs/YNNavigationController/NSObject+YNAssociateObject.m -------------------------------------------------------------------------------- /YNNavigationController/Libs/YNNavigationController/UIViewController+YNNavigationViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Libs/YNNavigationController/UIViewController+YNNavigationViewController.h -------------------------------------------------------------------------------- /YNNavigationController/Libs/YNNavigationController/UIViewController+YNNavigationViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Libs/YNNavigationController/UIViewController+YNNavigationViewController.m -------------------------------------------------------------------------------- /YNNavigationController/Libs/YNNavigationController/YNNavigationController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Libs/YNNavigationController/YNNavigationController.h -------------------------------------------------------------------------------- /YNNavigationController/Libs/YNNavigationController/YNNavigationController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Libs/YNNavigationController/YNNavigationController.m -------------------------------------------------------------------------------- /YNNavigationController/Libs/YNNavigationController/YNScreenShotView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Libs/YNNavigationController/YNScreenShotView.h -------------------------------------------------------------------------------- /YNNavigationController/Libs/YNNavigationController/YNScreenShotView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/Libs/YNNavigationController/YNScreenShotView.m -------------------------------------------------------------------------------- /YNNavigationController/back-@2x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/back-@2x.png -------------------------------------------------------------------------------- /YNNavigationController/back-@3x.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/back-@3x.png -------------------------------------------------------------------------------- /YNNavigationController/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/YNNavigationController/main.m -------------------------------------------------------------------------------- /iOSInjectionProject/x86_64/identity.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yongyuandouneng/YNNavigationController/HEAD/iOSInjectionProject/x86_64/identity.txt --------------------------------------------------------------------------------