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) {

    //添加要响应的方法

           }

}

 

posted on 2014-01-09 15:17  ACM_Someone like you  阅读(1994)  评论(0编辑  收藏  举报

导航