我想要在屏幕上,通过两个手指的点击,分别检测出两个点的坐标,我是这样做的:     if ([touches count] == 2)
{
  NSArray *twoTouches = [touches allObjects];
  UITouch *first = [twoTouches objectAtIndex:0];
  UITouch *second = [twoTouches objectAtIndex:1];
  firstTouch= [first locationInView:self.view];
  secondTouch= [second locationInView:self.view];
 }
    
      可是,我的问题是只有当两个手指同时在屏幕上移动的时候才能够检测到坐标,怎样才能够一个手指不动,另外一个手指动时候,能够检测到多点触摸呢?而且最重要的问题是,我取出的两个坐标无法区分是哪个手指的,比如说:我第一次是a手指取到了firstTouch,b手指取到了secondTouch,而第二次却是a手指取到了secondTouch,b手指取到了firstTouch。我的情况是这样,谁能帮帮我呢?不胜感激。我的qq: 312637506。希望高手能赐教~