首页 > 代码库 > 判断手势事件向左还是向右
判断手势事件向左还是向右
首先在view上添加手势 UIPanGestureRecognizer
1 UIPanGestureRecognizer *panGes = [[UIPanGestureRecognizer alloc] initWithTarget:self action:@selector(goAnimation:)];2 3 [self.view addGestureRecognizer:panGes];
在滑动方法当中根据 translationInView 这个方法返回的点的正负来判断向左还是向右 大于0说明向左,小于0说明向右
UIPanGestureRecognizer *pan = (UIPanGestureRecognizer *)sender;CGPoint point = [pan translationInView:self.view];if (point.x>0) { //向左滑动}else{ //向右滑动}
判断手势事件向左还是向右
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。