-1

我想知道是否有人知道可以识别 ipad 上的触摸点有多近。有像 Appmates ( http://www.appmatestoys.com/ ) 这样的产品可以创建电容标记,但是你能走多远/你能创建多复杂的标记?

此外,我读过总共有 10 个,有没有办法绕过这个限制?

4

1 回答 1

0
//this code used to find touch point in screen

-(void)touchesMoved:(NSSet *)touches withEvent:(UIEvent *)event{

    UITouch *myTouch = [touches anyObject];
    point = [myTouch locationInView:self.view];
    NSLog(@"%f,%f",point.x, point.y);


}
于 2012-10-29T09:30:02.600 回答