iOS手势的添加与使用

跳过繁文缛节直接讲解使用步骤。

1,导入代理协议(没有特殊要求可以不用添加)

.h文件:
#import <UIKit/UIKit.h>

@interface AKAddGestureView : UIViewController
@end

.m文件:
#import "AKAddGestureView"

@interface AKAddGestureView ()<UIGestureRecognizerDelegate>

2,根据需要添加属性,没全局需求可以不添加

@property (nonatomic,strong) UISwipeGestureRecognizer *left;
@property (nonatomic,strong) UISwipeGestureRecognizer *right;
@property (nonatomic,strong) UISwipeGestureRecognizer *up;
@property (nonatomic,strong) UISwipeGestureRecognizer *down;//根据需要,添加所需要手势。

@property (nonatomic,strong) UITapGestureRecognizer *tap;

@end

3,添加轻扫手势(此处以下滑手势为例,其他方向手势与此类似)

@implementation AkAddGestureView

- (void)viewDidLoad{
    
  [super viewDidLoad];
  self.view.backgroundcolor = [UIColor whiteColor];
  
}

- (void)addSwipeGestureToCurrentView{

   UISwipeGestureRecognizer *down = [[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(swipeGestureAction)];
   self.down = down;
   self.down.direction = UISwipeGestureRecognizerDirectionDown;
   [self.view addGestureRecognizer:self.down];

}

- (void)swipeGestureAction{

    self.view.backgroundcolor = [UIColor blueColor];

}

4.添加tap手势(点击手势中可以选择点击几次触发和几个手指有效)

- (void)addTapGestureToView{

   UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapGestureAction)];
   self.tap = tap;
   [self.tap setNumberOfTapsRequired:2];//设置点击次数
   [self.tap setNumberOfTouchesRequired:2];//设置几个手指点击有效,不设置默认为1;
   [self.view addGestureRecognizer:self.tap];

}

- (void)tapGestureAction{

   self.view.backgroundcolor = [UIColor lightGrayColor];

}

@end

5,有的视图中可能手势不能识别,可能该视图已经添加过手势,如有需要可以将之前禁止或者添加判断。对于tableView需要先将其滑动属性设置为NO,才能正常使用手势。

self.tableView.scrollEnabled = NO;

 

 

 

 

 

 

 

 

 

 

转载于:https://my.oschina.net/Kuture/blog/685879

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值