zoukankan      html  css  js  c++  java
  • 解决右滑返回手势和UIScrollView中的手势冲突

    项目中遇到一个页面中是以一个scrollview横向Tab展示两个不同功能的显示,譬如消息和公告功能,但是由于滑动返回手势和scrollview的滑动返回手势冲突了,导致页面不再能够滑动返回。类似的还有图片浏览功能也出现过。

    iOS系统中,滑动返回手势,其实是一个UIPanGestureRecognizer,系统默认的操作是只有滑动屏幕的左边的某个位置,UIPanGestureRecognizer才会起作用。UIScrollView的滑动手势也是UIPanGestureRecognizer。那在侧边滑动时,让UIScrollView的不响应事件就OK了嘛,首先想到了继承UIScrollView 重写下面的方法,让滑动侧边时scrollView不响应事件,根据响应者链,事件最终会传递给下方的滑动手势。

    - (UIView *)hitTest:(CGPoint)point withEvent:(UIEvent *)event     {
          if (point.x < location.x) { // location.x为系统的某个点的x
              return nil;
          } else {
              return [super hitTest:point withEvent:event];
          }
    }

    但是,这样有个问题,就是在一个页面不同tab时,也需要滑动切换,滑动返回。

    由于scrollView的滑动手势拦截了事件,那我重写scrollView中panGestureRecognizer的代理方法,让它不拦截就好了嘛。于是继承UIScrollView,重写下面的方法。

    - (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {
    
            if ([self panBack:gestureRecognizer]) {
                 return YES;
            }
            return NO;
    
     }
    
    
    - (BOOL)panBack:(UIGestureRecognizer *)gestureRecognizer {
    
        if (gestureRecognizer == self.panGestureRecognizer) {
              UIPanGestureRecognizer *pan = (UIPanGestureRecognizer *)gestureRecognizer;
              CGPoint point = [pan translationInView:self];
              UIGestureRecognizerState state = gestureRecognizer.state;
              if (UIGestureRecognizerStateBegan == state || UIGestureRecognizerStatePossible == state) {
                  CGPoint location = [gestureRecognizer locationInView:self];
                  if (point.x > 0 && location.x < “这个自己设定" && self.contentOffset.x <= 0) {
                       return YES;
                  }
              }
         }
         return NO;
    
    }

    需要侧边滑动时 panBack 返回YES,这时候,我让scrollView的手势和页面的滑动返回手势共存,scrollView不拦截手势,那不就可以滑动返回了吗。好了,测试一下,可以滑动返回,但是滑动返回时,为什么scrollView也跟着在滑动呢,太影响美观了,看来还需要另外的办法,我又回到了第一种办法时的想法,让scrollView切换的时候相应panGesture,滑动返回的时候不响应,那重写scrollView中的另外一个panGestureRecognizer的代理方法。

    - (BOOL)gestureRecognizerShouldBegin:(UIGestureRecognizer *)gestureRecognizer {
    
        if ([self panBack:gestureRecognizer]) {
            return NO;
        }
        return YES;
    
    }

    第二种方法:

     -(BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer  
     {  
         // 首先判断otherGestureRecognizer是不是系统pop手势  
         if ([otherGestureRecognizer.view isKindOfClass:NSClassFromString(@"UILayoutContainerView")]) {  
             // 再判断系统手势的state是began还是fail,同时判断scrollView的位置是不是正好在最左边  
             if (otherGestureRecognizer.state == UIGestureRecognizerStateBegan && self.contentOffset.x == 0) {  
                  return YES;  
             }  
         }  
    
         return NO;  
    }

    以上的代码都是在一个自定义的UIScrollView上的,重写上面的方法即可。然后让横向滚动的scrollView继承这个自定义UIScrollView就OK了。

    原理:
    scrollView的pan手势会让系统的pan手势失效,所以我们只需要在系统手势失效且scrollView的位置在初始位置的时候让两个手势同时启用就可以了

  • 相关阅读:
    XML错误信息Referenced file contains errors (http://www.springframework.org/schema/beans/spring-beans-4.0.xsd). For more information, right click on the message in the Problems View ...
    Description Resource Path Location Type Cannot change version of project facet Dynamic Web Module to 2.3.
    maven创建web报错Cannot read lifecycle mapping metadata for artifact org.apache.maven.plugins:maven-compiler-plugin:maven-compiler-plugin:3.5.1:runtime Cause: error in opening zip file
    AJAX跨域
    JavaWeb学习总结(转载)
    JDBC学习笔记
    Java动态代理之JDK实现和CGlib实现
    (转)看懂UML类图
    spring boot配置使用fastjson
    python3下django连接mysql数据库
  • 原文地址:https://www.cnblogs.com/jgCho/p/6439591.html
Copyright © 2011-2022 走看看