为了给导航页面添加手势拖动操作,需要重写UINavigationController。
1.建立一个名字叫JOPNavigationController的UINavigationController的子类。
JOPNavigationController.h
<pre>12312312312312312312312312312312312312312312312312312312312312312312312312312312312312313</pre>
2.在.m文件的viewDidLoad方法中添加如下代码
/ 获取系统自带滑动手势的target对象
id target = self.interactivePopGestureRecognizer.delegate;
// 创建全屏滑动手势,调用系统自带滑动手势的target的action方法
UIPanGestureRecognizer *pan = [[UIPanGestureRecognizer alloc] initWithTarget:target action:@selector(handleNavigationTransition:)];
// 设置手势代理,拦截手势触发
pan.delegate=self;
// 给导航控制器的view添加全屏滑动手势
[self.view addGestureRecognizer:pan];
// 禁止使用系统自带的滑动手势
self.interactivePopGestureRecognizer.enabled = NO;
3.重写判断手势触发的方法
//下面两个方法只需返回YES,就可以,可以添加限制条件
// 拦截手势触发
- (BOOL)gestureRecognizerShouldBegin:(UIPanGestureRecognizer*)gestureRecognizer
{
return YES;
}
- (BOOL)gestureRecognizer:(UIGestureRecognizer*)gestureRecognizer shouldReceiveTouch:(UITouch*)touch{
return YES;
}
4.新建的子类就可以替代系统的UINavigationController来用了。
具体用法如下所示:
在AppDelegate的didFinishLaunchingWithOptions方法中添加如下代码:
self.window = [[UIWindow alloc] initWithFrame:[UIScreen mainScreen].bounds];
ViewController *rootViewController = [[ViewController alloc] init];
JOPNavigationController *navigationController = [[JOPNavigationController alloc] initWithRootViewController:rootViewController];
[self.window setRootViewController:navigationController];
该方法的实现原理以后有时间再详细讨论。