文档详情

iOS常用的手势.docx

发布:2017-12-10约5.36千字共7页下载文档
文本预览下载声明
#import ViewController.h@interface ViewController ()@property (strong, nonatomic) UIView * testView;@end@implementation ViewController- (void)viewDidLoad { [super viewDidLoad]; // Do any additional setup after loading the view, typically from a nib.? self.testView = [[UIView alloc]initWithFrame:CGRectMake(20, 60, 335, 200)]; self.testView.backgroundColor = [UIColor cyanColor]; [self.view addSubview:self.testView]; //开启motion事件(摇晃事件) [[UIApplication sharedApplication]setApplicationSupportsShakeToEdit:YES]; ? //点击手势 UITapGestureRecognizer * tapGestureTwo = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapGestureAction:)]; tapGestureTwo.numberOfTapsRequired = 2;//点击的次数(tap点击) tapGestureTwo.numberOfTouchesRequired = 1;//点击的手指头数量(touches 触摸) [self.testView addGestureRecognizer:tapGestureTwo];//添加手势到指定的视图/控件? UITapGestureRecognizer * tapGestureThree = [[UITapGestureRecognizer alloc]initWithTarget:self action:@selector(tapGestureThreeAction:)]; tapGestureThree.numberOfTapsRequired = 3; tapGestureThree.numberOfTouchesRequired = 1; [self.testView addGestureRecognizer:tapGestureThree]; //当tapGestureThree失败后才去执行tapGestureTwo [tapGestureTwo requireGestureRecognizerToFail:tapGestureThree]; //捏合手势 UIPinchGestureRecognizer * pinchGesture = [[UIPinchGestureRecognizer alloc]initWithTarget:self action:@selector(pinchGestureAction:)]; [self.testView addGestureRecognizer:pinchGesture]; //旋转手势 UIRotationGestureRecognizer * rotationGesture = [[UIRotationGestureRecognizer alloc]initWithTarget:self action:@selector(rotationGestureAction:)]; [self.testView addGestureRecognizer:rotationGesture]; //拖动手势 UIPanGestureRecognizer * panGesture = [[UIPanGestureRecognizer alloc]initWithTarget:self action:@selector(panGestureAction:)]; [self.testView addGestureRecognizer:panGesture]; //长按手势 UILongPressGestureRecognizer * longPressGesture = [[UILongPressGestureRecognizer alloc]initWithTarget:self action:@selector(longPressGestureAction:)]; [self.testView addGestureReco
显示全部
相似文档