zoukankan      html  css  js  c++  java
  • 第二十六篇、因为自定item(nav)而使系统右滑返回手势失效的解决方法

    @interface ViewController () <uigesturerecognizerdelegate>
    @end@implementation ViewController
    - (void)viewDidLoad {
            [super viewDidLoad];        // 自定义返回按钮
            UIButton *button = [[UIButton alloc]initWithFrame:CGRectMake(0, 0, 44, 44)];
            [button setTitle:@"王俨2" forState:UIControlStateNormal];
            [button setTitleColor:[UIColor blackColor] forState:UIControlStateNormal];
            [button addTarget:self action:@selector(back:) forControlEvents:UIControlEventTouchUpInside];        self.navigationItem.leftBarButtonItem = [[UIBarButtonItem alloc]initWithCustomView:button];
    }
     
    - (void)back:(UIButton *)button {
            [self.navigationController popViewControllerAnimated:YES];
    }
     
    - (void)viewWillAppear:(BOOL)animated {
        [super viewWillAppear:animated];    if (self.navigationController.viewControllers.count > 1) {          // 记录系统返回手势的代理
            _delegate = self.navigationController.interactivePopGestureRecognizer.delegate;          // 设置系统返回手势的代理为当前控制器
            self.navigationController.interactivePopGestureRecognizer.delegate = self;
        }
    }
     
    - (void)viewWillDisappear:(BOOL)animated {
        [super viewWillDisappear:animated];     // 设置系统返回手势的代理为我们刚进入控制器的时候记录的系统的返回手势代理
        self.navigationController.interactivePopGestureRecognizer.delegate = _delegate;
    }
    #pragma mark - UIGestureRecognizerDelegate- (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer {        return self.navigationController.childViewControllers.count > 1;
    }
     
    - (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {    return self.navigationController.viewControllers.count > 1;
    }@end

    1.使用自定义nav item之后,默认的右滑返回的手势不可以使用

    2.进入控制器之前,把系统的Delegate保存起来,视图加载将要完成设置给默认的右滑手势

  • 相关阅读:
    android阅读器开发
    Android开源库
    Android开源项目分类汇总
    java 读取显示txt内容(Swing)
    Java 图形用户界面设计 (Swing)
    Java读取txt文件,换行写txt文件
    出国旅行口语必备300句
    100-days:nine
    100-days: eight
    The Attention Merchants
  • 原文地址:https://www.cnblogs.com/HJQ2016/p/5873907.html
Copyright © 2011-2022 走看看