ios uiviewcontroller怎么实现触摸事件

 我来答
嘻哈小哆啦
2016-09-21 · 超过13用户采纳过TA的回答
知道答主
回答量:24
采纳率:0%
帮助的人:19.4万
展开全部
ios uiviewcontroller处理触摸事件的方法是:
在UIViewController的子类中重写以下几个函数:
-(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
当手指接触到屏幕时触发
-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event
当手指在屏幕上滑动时
-(void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event
当手指滑动一段后离开屏幕时
-(void)touchesCancelled:(NSSet *)touches withEvent:(UIEvent *)event
当有系统事件发生要取消触摸事件时

从(UIEvent *)event中提取所有触摸事件
UITouch *touch = [[event allTouches]anyObject];

取得触摸事件对应的NSView
[touch view];

取得触摸事件对应NSView的座标
CGPoint touchLocation = [touch locationInView:self.view];
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式