设置导航栏手势pop
模仿微信微信手势pop
效果图
![](https://img.haomeiwen.com/i2304120/d0d4f25ee4a0b6a8.gif)
自定义导航继承UINavigationController
- (void)viewDidLoad {
[super viewDidLoad];
NSArray *array = [self.interactivePopGestureRecognizer valueForKey:@"_targets"];
id target = [[array firstObject] valueForKey:@"target"];
SEL sel = @selector(handleNavigationTransition:);
UIPanGestureRecognizer *panGesture = [[UIPanGestureRecognizer alloc] init];
[self.interactivePopGestureRecognizer.view addGestureRecognizer:panGesture];
[panGesture addTarget:target action:sel];
self.navigationBar.barTintColor = [UIColor redColor];
self.navigationBar.tintColor = [UIColor whiteColor];
self.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName:[UIColor whiteColor]}; self.interactivePopGestureRecognizer.delegate = (id)self;
}
关注微信公众号“应讯”
![](https://img.haomeiwen.com/i2304120/69fae39af398450c.jpg)