码迷,mamicode.com
首页 > 移动开发 > 详细

iOS-响应上下左右滑动手势

时间:2015-10-23 21:28:42      阅读:252      评论:0      收藏:0      [点我收藏+]

标签:

iOS-响应上下左右滑动手势 

分类: iPhone开发

-(void)viewDidLoad{

 

UISwipeGestureRecognizer *recognizer; 

recognizer = [[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(handleSwipeFrom:)];

     [recognizer setDirection:(UISwipeGestureRecognizerDirectionRight)];

    [[self view] addGestureRecognizer:recognizer];

[recognizer release];

    recognizer = [[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(handleSwipeFrom:)];

     [recognizer setDirection:(UISwipeGestureRecognizerDirectionLeft)];

    [[self view] addGestureRecognizer:recognizer];

[recognizer release];

  recognizer = [[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(handleSwipeFrom:)];

     [recognizer setDirection:(UISwipeGestureRecognizerDirectionUp)];

    [[self view] addGestureRecognizer:recognizer];

[recognizer release];

 

  UISwipeGestureRecognizer *recognizer;

    recognizer = [[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(handleSwipeFrom:)];

     [recognizer setDirection:(UISwipeGestureRecognizerDirectionDown)];

    [[self view] addGestureRecognizer:recognizer];

[recognizer release];


 

}

-(void)handleSwipeFrom:(UISwipeGestureRecognizer *)recognizer{

 

if(recognizer.direction==UISwipeGestureRecognizerDirectionDown) {

       NSLog(@"swipe down");

//执行程序

}

if(recognizer.direction==UISwipeGestureRecognizerDirectionUp) {

       NSLog(@"swipe up");

//执行程序

}


 

if(recognizer.direction==UISwipeGestureRecognizerDirectionLeft) {

       NSLog(@"swipe left");

//执行程序

}


 

if(recognizer.direction==UISwipeGestureRecognizerDirectionRight) {

       NSLog(@"swipe right");

//执行程序

}


}

版权声明:本文为博主原创文章,未经博主允许不得转载。

======================================
 
 
 

iOS-响应上下左右滑动手势

标签:

原文地址:http://www.cnblogs.com/dexjay/p/4905589.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!