- 支持全屏手势返回
- 滑动返回的比例可配置
- 过渡动画,切换速度可自行设置
- 与系统导航无冲突
-
继承UINavigationController
-
添加全屏手势:UIPanGestureRecognizer
-
重写以下系统方法,根据手势截屏完成整个过程。
-
(void)pushViewController:(UIViewController*)viewController animated:(BOOL)animated;
-
(UIViewController *)popViewControllerAnimated:(BOOL)animated;
- 在这里只是实现了一下基本的功能,代码很简洁,有问题欢迎指出。