iOS之手势滑动返回功能
iOS中如果不自定义UINavigationBar,通过手势向右滑是可以实现返回的,这时左边的标题文字提示的是上一个ViewController的标题,如果需要把文字改为简约风格,例如弄过箭头返回啥的,那么你需要自定义UINavigationBar,但当你自定义navigationBar后,这个功能就会自动失效。
屏蔽右滑返回功能代码:
- if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
- self.navigationController.interactivePopGestureRecognizer.enabled = NO;
- }
开启滑动返回功能代码:
- - (void)viewWillAppear:(BOOL)animated{
- [super viewWillAppear:animated];
- // 右滑返回
- if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
- self.navigationController.interactivePopGestureRecognizer.delegate = nil;
- }
- }
注意各种坑:
"在一级视图中,iOS样式返回的手势滑动一下,然后进入二级视图,发现画面卡住了,按Home键转入后台,再返回应用,发现并没有Crash掉,而是直接跳到了二级视图里,运行正常了,大家知道push和pop的原理是用进栈出栈完成的,可能因为在一级视图中滑动那一下,影响了视图在栈中的位置。 "
------有人提到通过以下方法处理:“一级视图中一定要加入self.navigationController.interactivePopGestureRecognizer.enabled = NO;,先把iOS7手势返回屏蔽掉,到二级视图再用self.navigationController.interactivePopGestureRecognizer.enabled = YES打开”
自己写了个demo试运行,发现self.navigationController.interactivePopGestureRecognizer.enabled 不能动态设置更改状态。因此该方法不可行。
解决方法:
- - (void)viewDidAppear:(BOOL)animated
- {
- __weak typeof(self) weakSelf = self;
- self.navigationController.interactivePopGestureRecognizer.delegate = weakSelf;
- }
实现手势协议:
- #pragma mark - UIGestureRecognizerDelegate
- - (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer*)gestureRecognizer{
- //判断是否为rootViewController
- if (self.navigationController && self.navigationController.viewControllers.count == 1) {
- return NO;
- }
- return YES;
- }
但问题又来了,如果是一个显示成功/失败结果页,滑动返回不大符合正常思维,因为需要选择性屏蔽处理。
终极解决方法:自定义全屏滑动手势UIPanGestureRecognizer
- //
- // BasicNavigationController.m
- //
- //
- // Copyright (c) 2016年 lvxiangan520@126.com. All rights reserved.
- //
- #import "BasicNavigationController.h"
- #import "BaseResultViewController.h"
- @interface BasicNavigationController() <UIGestureRecognizerDelegate>
- @end
- @implementation BasicNavigationController
- - (void)viewDidLoad
- {
- [super viewDidLoad];
- [self.navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName : WhiteColor}];
- // 获取系统自带滑动手势的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;
- }
- - (void)pushViewController:(UIViewController *)viewController animated:(BOOL)animated
- {
- [viewController.navigationItem.backBarButtonItem setTitleTextAttributes:@{NSFontAttributeName : [UIFont systemFontOfSize:Scale_Size_Smaller()]} forState:UIControlStateNormal];
- if (self.childViewControllers.count > 0) {
- viewController.hidesBottomBarWhenPushed = YES;
- }
- [super pushViewController:viewController animated:YES];
- }
- - (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer
- {
- // 注意:只有非根控制器才有滑动返回功能,根控制器没有。
- // 判断导航控制器是否只有一个子控制器,如果只有一个子控制器,肯定是根控制器
- if (self.childViewControllers.count == 1) {
- // 表示用户在根控制器界面,就不需要触发滑动手势,
- return NO;
- }
- // 当前页面是显示结果页,不响应滑动手势
- UIViewController *vc = [self.childViewControllers lastObject];
- if ([vc isKindOfClass:[BaseResultViewController class]]) {
- return NO;
- }
- return YES;
- }
- @end
===========================实现app侧滑返回的方案二=================================
在需要开启侧滑返回的viewdidload里面写上 self.navigationController.interactivePopGestureRecognizer.delegate = nil;
或者干脆在 整个app的基类控制器里写上这句。
在每个navi的rootviewcontroller里面写上如下,这两个方法里的东西,是解决在navi根控制器侧滑的时候 出现的视觉bug
- (void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
self.navigationController.interactivePopGestureRecognizer.enabled = NO;
}
}
- (void)viewWillDisappear:(BOOL)animated {
[super viewWillDisappear:animated];
if ([self.navigationController respondsToSelector:@selector(interactivePopGestureRecognizer)]) {
self.navigationController.interactivePopGestureRecognizer.enabled = YES;
}
}
至于,在业务逻辑上不可逆的成功或者失败的结果(比如点击返回要跳转首页,而不是单纯的pop当前页)页侧滑会返回上一页的问题的解决方案如下:
在成功的结果页面,把导航的控制器数组里面的不需要的控制器移除即可。
比如从 a-PUSH-b-PUSH-c-PUSH-d(成功页面, 点击返回和侧滑返回都需要返回到a,不能返回b和c)
NSMutableArray *marr = [[NSMutableArray alloc]initWithArray:self.navigationController.viewControllers];
for (int i=0; i<marr.count-1; i++) {
UIViewController * VC = marr[i];
if ([VC isKindOfClass:[B class]]) {
[marr removeObject:VC];
}
}
for (int i=0; i<marr.count-1; i++) {
UIViewController * VC = marr[i];
if ([VC isKindOfClass:[c class]]) {
[marr removeObject:VC];
}
}
self.navigationController.viewControllers = marr;
大家是通过方案一 还是 方案二 解决的,可以留言告诉我。
=======================================================
扩展:系统自带的向右滑动手势返回上一个界面,ios7--手势
当从控制器A push到控制器B,我们返回控制器A,除了使用按钮返回
[self.navigationController pushViewController:Vc animated:YES];
还可以使用ios7出来的向右滑动,返回控制器A
文档中是这样定义的:
@property(nullable, nonatomic, weak) id<UINavigationControllerDelegate> delegate;
@property(nullable, nonatomic, readonly) UIGestureRecognizer *interactivePopGestureRecognizer NS_AVAILABLE_IOS(7_0) __TVOS_PROHIBITED;
----------------------------------------------------------------------
我们在控制器B中的viewDidLoad中
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
self.navigationController.interactivePopGestureRecognizer.enabled = YES; // 手势有效设置为YES 无效为NO
self.navigationController.interactivePopGestureRecognizer.delegate = self; // 手势的代理设置为self
}
但是当回到控制器A中时,再想push到控制器B,就会出现卡屏,不会动的现象,因为rootView也会有向右滑动返回的问题
要解决这个问题,我们只需在控制器A的viewDidAppear中设置,interactivePopGestureRecognizer为NO:
-(void)viewDidAppear:(BOOL)animated {
[super viewDidAppear:animated];
if ([[[UIDevice currentDevice] systemVersion] floatValue] >= 7.0) {
self.navigationController.interactivePopGestureRecognizer.enabled = NO;
}
}
这样即可以保证再B中向右滑返回A动后再次pushB时不会卡在A界面。
推荐大家个朋友开的淘宝小店店, 欢迎光临
posted on 2016-07-19 21:19 🌞Bob 阅读(9659) 评论(2) 编辑 收藏 举报