zoukankan      html  css  js  c++  java
  • iOS 左右滑动 手势 响应方法

    1.  

    @property (nonatomic, strong) UISwipeGestureRecognizer *leftSwipeGestureRecognizer;

    @property (nonatomic, strong) UISwipeGestureRecognizer *rightSwipeGestureRecognizer;

    2.  

    @synthesize leftSwipeGestureRecognizer,rightSwipeGestureRecognizer;

    3. 在视图控制器里加载这两个手势

       self.leftSwipeGestureRecognizer = [[UISwipeGestureRecognizer allocinitWithTarget:self action:@selector(handleSwipes:)];

       self.rightSwipeGestureRecognizer = [[UISwipeGestureRecognizer allocinitWithTarget:self action:@selector(handleSwipes:)];

       self.leftSwipeGestureRecognizer.direction = UISwipeGestureRecognizerDirectionLeft;

       self.rightSwipeGestureRecognizer.direction = UISwipeGestureRecognizerDirectionRight;

       [self.viewaddGestureRecognizer:self.leftSwipeGestureRecognizer]; 

       [self.viewaddGestureRecognizer:self.rightSwipeGestureRecognizer];

    4. 

    - (void)handleSwipes:(UISwipeGestureRecognizer *)sender

    {

        if (sender.direction == UISwipeGestureRecognizerDirectionLeft) {

        //添加要响应的方法

                }

            if (sender.direction == UISwipeGestureRecognizerDirectionRight) {

        //添加要响应的方法

               }

    }

     

  • 相关阅读:
    android-基础编程-RecyclerView
    android-基础编程-ListView
    LINUX 日志服务器的搭建
    使用parted进行磁盘分区
    raid磁盘阵列
    LVM逻辑卷管理
    /home 分区迁移试验
    PHP 匹配一个汉字
    xhr dojo load
    ERR: Call to undefined function openssl_random_pseudo_bytes()
  • 原文地址:https://www.cnblogs.com/someonelikeyou/p/3512268.html
Copyright © 2011-2022 走看看