获取当前触摸点坐标

来源:互联网 发布:刺客信条3低配优化 编辑:程序博客网 时间:2024/04/29 06:14
  1. //当有一个或多个手指触摸事件在当前视图或window窗体中响应  
  2. -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event  
  3. {  
  4.     NSSet *allTouches = [event allTouches];    //返回与当前接收者有关的所有的触摸对象  
  5.     UITouch *touch = [allTouches anyObject];   //视图中的所有对象  
  6.     CGPoint point = [touch locationInView:[touch view]]; //返回触摸点在视图中的当前坐标  
  7.     int x = point.x;  //x轴坐标
  8.     int y = point.y;  //y轴坐标
  9.     
  10. }  
0 0
原创粉丝点击